mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-15 05:04:16 +01:00
maybe fix issue with char data being accidentally yeeted without reason and sent empty
This commit is contained in:
parent
fc18b19a4b
commit
cf6b89454b
5 changed files with 66 additions and 40 deletions
|
|
@ -109,8 +109,11 @@ namespace MareSynchronos.Managers
|
|||
{
|
||||
Logger.Verbose("Building Cache for " + unprocessedObject.ObjectKind);
|
||||
PermanentDataCache = _characterDataFactory.BuildCharacterData(PermanentDataCache, unprocessedObject.ObjectKind, unprocessedObject.Address, token);
|
||||
unprocessedObject.IsProcessing = false;
|
||||
unprocessedObject.HasUnprocessedUpdate = false;
|
||||
if (!token.IsCancellationRequested)
|
||||
{
|
||||
unprocessedObject.HasUnprocessedUpdate = false;
|
||||
unprocessedObject.IsProcessing = false;
|
||||
}
|
||||
token.ThrowIfCancellationRequested();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue