Skip to content

Commit

Permalink
Actually fix the bug instead of just updating the gitignore.
Browse files Browse the repository at this point in the history
  • Loading branch information
MrTyton committed Jul 2, 2024
1 parent c38fe45 commit f241b63
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions AutomatedFanfic.code-workspace
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"folders": [
{
"path": "."
}
],
"settings": {}
}
2 changes: 1 addition & 1 deletion release-versions/fff.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.34.8
4.35.6
2 changes: 1 addition & 1 deletion release-versions/latest.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2024.05.29-4
2024.07.02
2 changes: 1 addition & 1 deletion root/app/url_worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def continue_failure(fanfic: fanfic_info.FanficInfo, pushbullet: pushbullet_noti
# If the fanfic has reached the maximum number of repeats, log a failure and return
if fanfic.reached_maximum_repeats():
ff_logging.log_failure(f"Reached maximum number of repeats for {fanfic.url}. Skipping.")
pushbullet.send_notification("Fanfiction Download Failed", fanfic.url)
pushbullet.send_notification("Fanfiction Download Failed", fanfic.url, fanfic.site)
else:
# Increment the repeat count and put the fanfic back in the queue
fanfic.increment_repeat()
Expand Down

0 comments on commit f241b63

Please sign in to comment.