Skip to content

Commit

Permalink
- fixed bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
czy0729 committed Nov 16, 2022
1 parent 3f431ed commit eff9fd8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"expo": {
"description": "A React Native App for https://bgm.tv, tinygrail plugin 4.5.0",
"version": "7.3.0",
"version": "7.3.1",
"android": {
"versionCode": 70300,
"versionCode": 70310,
"package": "com.czy0729.bangumi",
"adaptiveIcon": {
"foregroundImage": "./src/assets/images/foreground.png",
Expand Down
2 changes: 1 addition & 1 deletion src/screens/home/v2/item/count-video/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ function Count({ subjectId, subject, epStatus }: Props, { $ }: Ctx) {
if (total !== current) right += ` / ${total}`
break
default:
right = `${current}`
right = `${total}`
break
}

Expand Down
2 changes: 1 addition & 1 deletion src/stores/subject/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ export function cheerioSubjectFormHTML(HTML) {
lock: $('div.tipIntro > div.inner > h3').text(),

// hash 比如删除等网页操作需要
formhash: $('input[name=formhash]').attr('value')
formhash: String($('#collectBoxForm').attr('action')).split('?gh=')?.[1] || ''
}
}

Expand Down

0 comments on commit eff9fd8

Please sign in to comment.