Skip to content

Commit 760c74e

Browse files
Merge pull request #300 from UchuServer/bug/missions-not-loaded
Likely fix bug where missions table fails to load
2 parents 2363246 + d93492f commit 760c74e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Uchu.World/Client/CdClient/CacheTable/BurstCacheTable.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,10 @@ public override async Task<T[]> FindAllAsync<T>(object index) where T : class
6666

6767
// Reset the timer and return the cached entry.
6868
var result = (this._cachedTable.ContainsKey(index) ? this._cachedTable[index] : Array.Empty<object>()).Cast<T>().ToArray();
69-
this._semaphore.Release();
7069
this._resetTimer.Stop();
7170
this._resetTimer.Start();
71+
this._semaphore.Release();
7272
return result;
7373
}
7474
}
75-
}
75+
}

0 commit comments

Comments
 (0)