disable auto-auto detection

This commit is contained in:
oatmealine 2020-01-26 19:41:34 +03:00
parent 662093ebe8
commit 819c6623c9
No known key found for this signature in database
GPG Key ID: C4CB49CFAD721145
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ module.exports = (app, db): void => {
// audio_track is official songs and song_id is newgrounds aka custom songs
'audio_track': Number(req.body.audioTrack),
'song_id': Number(req.body.songID),
'auto': Boolean(Number(req.body.auto || 0)),
'auto': false,
'password': Number(req.body.password || 0),
'original': Boolean(Number(req.body.original || 0)),
'two_player': Boolean(Number(req.body.twoPlayer || 0)),