We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2363246 + d93492f commit 760c74eCopy full SHA for 760c74e
Uchu.World/Client/CdClient/CacheTable/BurstCacheTable.cs
@@ -66,10 +66,10 @@ public override async Task<T[]> FindAllAsync<T>(object index) where T : class
66
67
// Reset the timer and return the cached entry.
68
var result = (this._cachedTable.ContainsKey(index) ? this._cachedTable[index] : Array.Empty<object>()).Cast<T>().ToArray();
69
- this._semaphore.Release();
70
this._resetTimer.Stop();
71
this._resetTimer.Start();
+ this._semaphore.Release();
72
return result;
73
}
74
75
-}
+}
0 commit comments