fix editing annotation

This commit is contained in:
Alex Bezdieniezhnykh
2024-09-13 17:39:53 +03:00
parent 52371ace3a
commit 42fdee599e
11 changed files with 171 additions and 67 deletions
@@ -10,9 +10,9 @@ public static class ThrottleExt
_throttleOn = true;
await func();
_ = Task.Run(() =>
_ = Task.Run(async () =>
{
Task.Delay(throttleTime ?? TimeSpan.FromMilliseconds(500));
await Task.Delay(throttleTime ?? TimeSpan.FromMilliseconds(500));
_throttleOn = false;
});
}