fix: add missing await

This commit is contained in:
spiral
2021-10-06 19:49:11 -04:00
parent 92c1b4de56
commit 655d0d6c44

View File

@@ -31,7 +31,7 @@ namespace PluralKit.Bot
if (!Regex.IsMatch(newHid, "^[a-z]{5}$"))
throw new PKError($"Invalid new system ID `{newHid}`.");
var existingSystem = _repo.GetSystemByHid(newHid);
var existingSystem = await _repo.GetSystemByHid(newHid);
if (existingSystem != null)
throw new PKError($"Another system already exists with ID `{newHid}`.");