Skończyło się na użyciu mysql.escape(val) w zapytaniu
app.mysql.query('INSERT INTO `files` (`torrentid`, `filename`, `filesize`) VALUES '+app.mysql.escape(torrentFiles), function(err, result)
EDYTUJ
Rozwiązaniem było dodanie put torrentFiles
w []
. to jest teraz
app.mysql.query('INSERT INTO `files` (`torrentid`, `filename`, `filesize`) VALUES ? ', [torrentFiles], function(err, result)