.listquotes now shows this server's quotes

This commit is contained in:
Kwoth
2016-12-15 19:20:26 +01:00
parent 1368e1e929
commit e0150e605a
3 changed files with 4 additions and 4 deletions

View File

@@ -27,7 +27,7 @@ namespace NadekoBot.Modules.Utility
IEnumerable<Quote> quotes;
using (var uow = DbHandler.UnitOfWork())
{
quotes = uow.Quotes.GetGroup(page * 16, 16);
quotes = uow.Quotes.GetGroup(channel.Guild.Id, page * 16, 16);
}
if (quotes.Any())