diff --git a/CloudController.cs b/CloudController.cs index 8ebc753..0708a25 100644 --- a/CloudController.cs +++ b/CloudController.cs @@ -114,7 +114,7 @@ private void StoreActiveRunners() public async Task LoadActiveRunners() { if (!File.Exists(_persistentPath)) return; - string json = File.ReadAllText(_persistentPath); + string json = await File.ReadAllTextAsync(_persistentPath); var restoredRunners = JsonSerializer.Deserialize>(json); if (restoredRunners == null) return;