mirror of
https://github.com/Spengreb/sync.git
synced 2026-05-14 19:42:06 +00:00
Fix channel registration error due to extra knex query param
This commit is contained in:
parent
07c801a12d
commit
830486bc4f
1 changed files with 1 additions and 1 deletions
|
|
@ -379,7 +379,7 @@ module.exports = {
|
|||
|
||||
db.query("INSERT INTO `channel_ranks` VALUES (?, ?, ?) " +
|
||||
"ON DUPLICATE KEY UPDATE rank=?",
|
||||
[name, rank, chan, rank, chan], callback);
|
||||
[name, rank, chan, rank], callback);
|
||||
},
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue