Skip to content

Commit

Permalink
release(Andoird): 0.9.6
Browse files Browse the repository at this point in the history
  • Loading branch information
smallpath committed Feb 10, 2019
1 parent 968b616 commit 10ac3e5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "psnine",
"version": "0.9.5",
"version": "0.9.6",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
Expand Down
3 changes: 2 additions & 1 deletion psnine/parser/game/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ export default function (html) {
const arr = text.split('\n').map(item => item.replace(/\t/g, '').trim()).filter(item => item.trim())

const title = $this.find('td.title a').text()
const matched = img.match(/\/(\d+)\./)
const idUrl = $this.find('a').attr('href')
const matched = idUrl.match(/\/(\d+)/)

const id = matched ? matched[1] : arr[1] + arr[2]

Expand Down

0 comments on commit 10ac3e5

Please sign in to comment.