mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 15:23:09 +02:00
Merge pull request #1340 from akihikodaki/github
Fix GitHub bot user query
This commit is contained in:
commit
953c81971a
1 changed files with 2 additions and 1 deletions
|
@ -9,7 +9,8 @@ module.exports = async (app: express.Application) => {
|
||||||
if (config.github_bot == null) return;
|
if (config.github_bot == null) return;
|
||||||
|
|
||||||
const bot = await User.findOne({
|
const bot = await User.findOne({
|
||||||
usernameLower: config.github_bot.username.toLowerCase()
|
usernameLower: config.github_bot.username.toLowerCase(),
|
||||||
|
host: null
|
||||||
});
|
});
|
||||||
|
|
||||||
if (bot == null) {
|
if (bot == null) {
|
||||||
|
|
Loading…
Reference in a new issue