diff --git a/src/NadekoBot/Modules/Utility/Commands/QuoteCommands.cs b/src/NadekoBot/Modules/Utility/Commands/QuoteCommands.cs index e6b16b96..30626813 100644 --- a/src/NadekoBot/Modules/Utility/Commands/QuoteCommands.cs +++ b/src/NadekoBot/Modules/Utility/Commands/QuoteCommands.cs @@ -52,7 +52,7 @@ namespace NadekoBot.Modules.Utility using (var uow = DbHandler.Instance.GetUnitOfWork()) { // quote = await uow.Quotes.GetRandomQuoteByKeywordAsync(channel.Guild.Id, keyword).ConfigureAwait(false); - quote = await uow.Quotes.GetRandomQuoteByKeywordAsync(null, keyword).ConfigureAwait(false); + quote = await uow.Quotes.GetRandomQuoteByKeywordAsync(ulong, keyword).ConfigureAwait(false); } if (quote == null)