1
0
mirror of https://github.com/captn3m0/muse-dl.git synced 2024-09-20 15:57:11 +00:00

Keep going with next issue

This commit is contained in:
Nemo 2020-07-01 18:26:48 +05:30
parent 03fccde754
commit a05a1253db

View File

@ -115,10 +115,15 @@ module Muse::Dl
end end
elsif thing.is_a? Muse::Dl::Journal elsif thing.is_a? Muse::Dl::Journal
thing.issues.each do |issue| thing.issues.each do |issue|
# Update the issue begin
issue.parse # Update the issue
parser.url = issue.url issue.parse
Main.dl parser parser.url = issue.url
Main.dl parser
rescue e
puts e.message
puts "Faced an exception with previous issue, continuing"
end
end end
end end
end end