mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-12 22:17:22 +01:00
fixes for summoner
This commit is contained in:
parent
876c0f4f3e
commit
29eea0d800
3 changed files with 6 additions and 4 deletions
|
|
@ -233,7 +233,8 @@ public class CachedPlayer : MediatorSubscriberBase, IDisposable
|
|||
{
|
||||
foreach (var item in _cachedData.FileReplacements)
|
||||
{
|
||||
RevertCustomizationData(item.Key, name, applicationId).RunSynchronously();
|
||||
var task = Task.Run(async () => await RevertCustomizationData(item.Key, name, applicationId).ConfigureAwait(false));
|
||||
Task.WaitAll(new[] { task });
|
||||
}
|
||||
}
|
||||
_currentOtherChara = null;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue