mirror of
https://github.com/babalae/better-genshin-impact
synced 2025-01-07 03:17:16 +08:00
fix pathing bug
This commit is contained in:
parent
71fa4eaf3a
commit
bfeaa1b14a
@ -202,11 +202,25 @@ public class PathExecutor
|
||||
catch (NormalEndException normalEndException)
|
||||
{
|
||||
Logger.LogInformation(normalEndException.Message);
|
||||
throw;
|
||||
if (RunnerContext.Instance.IsContinuousRunGroup)
|
||||
{
|
||||
throw;
|
||||
}
|
||||
else
|
||||
{
|
||||
break;
|
||||
}
|
||||
}
|
||||
catch (TaskCanceledException e)
|
||||
{
|
||||
throw;
|
||||
if (RunnerContext.Instance.IsContinuousRunGroup)
|
||||
{
|
||||
throw;
|
||||
}
|
||||
else
|
||||
{
|
||||
break;
|
||||
}
|
||||
}
|
||||
catch (RetryException retryException)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user