Update QuoteRepository.cs

This commit is contained in:
Shikhir Arora 2017-03-02 05:20:12 -05:00 committed by GitHub
parent 97b314d611
commit 1418297958

View File

@ -28,7 +28,7 @@ namespace NadekoBot.Services.Database.Repositories.Impl
var rngk = new NadekoRandom();
string lowertext = text.ToLowerInvariant();
string uppertext = text.ToUpperInvariant();
return _set.Where(q => q.GuildId == guildId && q.Keyword == keyword && (q.Text.Contains(text) || q.Text.Contains(lowertext) || q.Text.Contains(uppertext))).OrderBy(q => rngk.Next()).FirstOrDefaultAsync();
return _set.Where(q => (q.Text.Contains(text) | q.Text.Contains(lowertext) | q.Text.Contains(uppertext)) & (q.GuildId == guildId && q.Keyword == keyword)).OrderBy(q => rngk.Next()).FirstOrDefaultAsync();
}
}
}