diff --git a/src/NadekoBot/Services/GrpcApiService.cs b/src/NadekoBot/Services/GrpcApiService.cs index 7aa43d906..3b9226af2 100644 --- a/src/NadekoBot/Services/GrpcApiService.cs +++ b/src/NadekoBot/Services/GrpcApiService.cs @@ -31,7 +31,7 @@ public class GrpcApiService : INService, IReadyExecutor public Task OnReadyAsync() { var creds = _creds.GetCreds(); - if (creds.GrpcApi is null || creds.GrpcApi.Enabled) + if (creds.GrpcApi is null || !creds.GrpcApi.Enabled) return Task.CompletedTask; try