minor fixes

This commit is contained in:
rootdarkarchon
2023-05-30 19:28:04 +02:00
parent 014172ea3c
commit 5f18d736da
2 changed files with 7 additions and 6 deletions

View File

@@ -278,7 +278,7 @@ public sealed class PairHandler : DisposableMediatorSubscriberBase
_downloadCancellationTokenSource = _downloadCancellationTokenSource?.CancelRecreate() ?? new CancellationTokenSource();
var downloadToken = _downloadCancellationTokenSource.Token;
Task.Run(async () =>
_ = Task.Run(async () =>
{
Dictionary<string, string> moddedPaths = new(StringComparer.Ordinal);
@@ -403,7 +403,7 @@ public sealed class PairHandler : DisposableMediatorSubscriberBase
{
Logger.LogTrace("[BASE-{appBase}] {this} visibility changed, now: {visi}, cached data exists", appData, this, IsVisible);
Task.Run(async () =>
_ = Task.Run(async () =>
{
_lastGlamourerData = await _ipcManager.GlamourerGetCharacterCustomizationAsync(PlayerCharacter).ConfigureAwait(false);
ApplyCharacterData(appData, _cachedData!, true);