You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Commit 1b0ec6b uses a string comparison which doesn't work with PostgreSQL:
WHERE `key` = "scanning"
It should be 'scanning' because double quotes delimit column names, not string constants.
The text was updated successfully, but these errors were encountered:
Actually, I think there are the following lines in file lib/Db/Maintenance.php which should be modified:
Line 34:
WHERE key = \'scanning\'';
Line 48:
WHERE key = \'scanning\'';
Line 61:
$sql = 'SELECT 1 FROM *PREFIX*music_cache WHERE key = \'scanning\'';
Commit 1b0ec6b uses a string comparison which doesn't work with PostgreSQL:
WHERE `key` = "scanning"
It should be 'scanning' because double quotes delimit column names, not string constants.
The text was updated successfully, but these errors were encountered: