Browse Source

Simplified the logic for illust_id

master
Ryan Hammett 8 years ago
parent
commit
76c7182497
1 changed files with 2 additions and 3 deletions
  1. +2
    -3
      slack-pixiv/commands/pixiv.rb

+ 2
- 3
slack-pixiv/commands/pixiv.rb View File

@ -13,11 +13,10 @@ module SlackMathbot
# Create iOS Illustration URL
# ios_url = "pixiv://illusts/" + pixiv_url.split("illust_id=")[-1]
illust_url = pixiv_url.split("illust_id=")[-1]
puts illust_url
ios_url = "pixiv://illusts/" + illust_url.slice(/^[0-9]+$/)
ios_url = "pixiv://illusts/" + pixiv_url.slice(/^[0-9]+$/)
puts ios_url
# TODO: Create iOS Member URL, must find correct URL scheme
ios_mem_url = "pixiv://member/" + pixiv_url.split("?id=")[-1]
puts ios_mem_url

Loading…
Cancel
Save