diff --git a/src/routes/getBranding.ts b/src/routes/getBranding.ts index b6a2131..b6786b1 100644 --- a/src/routes/getBranding.ts +++ b/src/routes/getBranding.ts @@ -177,6 +177,7 @@ async function filterAndSortBranding(videoID: VideoID, dbTitles: TitleDBResult[] const thumbnails = shuffleArray(dbThumbnails.filter(await shouldKeepThumbnails)) .sort((a, b) => b.votes - a.votes) + .sort((a, b) => +a.original - +b.original) .sort((a, b) => b.locked - a.locked) .map((r) => ({ timestamp: r.timestamp,