mirror of
https://github.com/ajayyy/SponsorBlockServer.git
synced 2024-11-10 01:02:30 +01:00
please accept my double quotes
This commit is contained in:
parent
46270cfe84
commit
6b7fdb8d9e
1 changed files with 2 additions and 2 deletions
|
@ -22,8 +22,8 @@ async function dbGetUserSummary(userID: HashedUserID, categoryStats: boolean, ty
|
|||
}
|
||||
if (typeStats) {
|
||||
additionalQuery += `
|
||||
SUM(CASE WHEN actionType = 'skip' THEN 1 ELSE 0 END) as 'typeSumSkip',
|
||||
SUM(CASE WHEN actionType = 'mute' THEN 1 ELSE 0 END) as 'typeSumMute',`;
|
||||
SUM(CASE WHEN actionType = 'skip' THEN 1 ELSE 0 END) as "typeSumSkip",
|
||||
SUM(CASE WHEN actionType = 'mute' THEN 1 ELSE 0 END) as "typeSumMute",`;
|
||||
}
|
||||
try {
|
||||
const row = await db.prepare("get", `
|
||||
|
|
Loading…
Reference in a new issue