mirror of
https://github.com/ajayyy/SponsorBlockServer.git
synced 2024-11-10 01:02:30 +01:00
Fix typo in top users query
This commit is contained in:
parent
fa866b0677
commit
5d77b7b03e
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ async function generateTopUsersStats(sortBy: string, categoryStatsEnabled = fals
|
|||
SUM(CASE WHEN category = 'interaction' THEN 1 ELSE 0 END) as "categorySumInteraction",
|
||||
SUM(CASE WHEN category = 'selfpromo' THEN 1 ELSE 0 END) as "categorySelfpromo",
|
||||
SUM(CASE WHEN category = 'music_offtopic' THEN 1 ELSE 0 END) as "categoryMusicOfftopic",
|
||||
SUM(CASE WHEN category = 'preview' THEN 1 ELSE 0 END) as "categorySumPreview,
|
||||
SUM(CASE WHEN category = 'preview' THEN 1 ELSE 0 END) as "categorySumPreview",
|
||||
SUM(CASE WHEN category = 'highlight' THEN 1 ELSE 0 END) as "categorySumHighlight", `;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue