Browse Source

Update image code to try and properly catch 403 error

master
Daniel Muckerman 5 years ago
parent
commit
004164d716
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      slack-pixiv/commands/illust.rb

+ 1
- 1
slack-pixiv/commands/illust.rb View File

@ -40,7 +40,7 @@ module SlackMathbot
image_url = agent.get(pixiv_url).images_with(:src => /600x600\/img-master/)[0].to_s.sub! '600x600','480x960'
begin
# Attempt to check on image
page = agent.head(image_url)
page = agent.get(image_url)
# Make sure page came back kosher
if page.code.to_i == 200

Loading…
Cancel
Save