mirror of
https://github.com/C9Glax/tranga-website.git
synced 2025-06-12 23:07:54 +02:00
Infinite loop on unavailable chapters
This commit is contained in:
@ -101,6 +101,10 @@ public abstract class TrangaTask
|
||||
{
|
||||
this.lastExecuted = DateTime.Now;
|
||||
this.state = ExecutionState.Success;
|
||||
}else if (statusCode is HttpStatusCode.NotFound)
|
||||
{
|
||||
this.state = ExecutionState.Waiting;
|
||||
this.lastExecuted = DateTime.MaxValue;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Reference in New Issue
Block a user