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 1bce3ea commit d5b5e7dCopy full SHA for d5b5e7d
Runtime/Loading/Services/LoadingService.cs
@@ -17,12 +17,12 @@ public class LoadingService : ILoadingService
17
18
public void AddAfterLoading(Func<CancellationToken, Task> func)
19
{
20
- beforeLoad.Add(func);
+ afterLoad.Add(func);
21
}
22
23
public void AddBeforeLoading(Func<CancellationToken, Task> func)
24
25
- afterLoad.Add(func);
+ beforeLoad.Add(func);
26
27
28
public void Enqueue(params Func<CancellationToken, Task>[] functions)
0 commit comments