fix some minor stuff

This commit is contained in:
Stanley Dimant
2022-06-28 02:09:08 +02:00
parent 51db0e54f2
commit 1021cca912
5 changed files with 31 additions and 12 deletions

View File

@@ -95,11 +95,10 @@ public class CachedPlayer
{
Logger.Debug("Downloading missing files for player " + PlayerName);
await _apiController.DownloadFiles(toDownloadReplacements, downloadToken);
}
if (downloadToken.IsCancellationRequested)
{
return;
if (downloadToken.IsCancellationRequested)
{
return;
}
}
ApplyCharacterData(_cache[_lastAppliedEquipmentHash], moddedPaths);