We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c792d82 commit b92ae06Copy full SHA for b92ae06
Assets/_PackageRoot/Runtime/Future/Future.cs
@@ -216,9 +216,8 @@ void IFutureInternal<T>.FailToLoad(Exception exception)
216
if (LogLevel.IsActive(DebugLevel.Error))
217
Debug.LogError(exception.Message);
218
219
- Safe.Run(OnFailedToLoad, exception, LogLevel); // 2 Original order
220
- Safe.Run(OnCompleted, false, LogLevel);; // 3 Original order
221
- // Safe.RunCancel(cts, LogLevel); // 1 Original order
+ Safe.Run(OnFailedToLoad, exception, LogLevel);
+ Safe.Run(OnCompleted, false, LogLevel);
222
Clear();
223
}
224
void IFutureInternal<T>.SetTimeout(TimeSpan duration) => timeout = duration;
0 commit comments