fix: next suggestion and title not being showed

This commit is contained in:
Moyasee
2025-11-07 13:27:24 +02:00
parent 754e9c14b8
commit 893802be55
2 changed files with 17 additions and 1 deletions

View File

@@ -16,7 +16,7 @@ export const requestSteam250 = async (path: string) => {
if (!steamGameUrl) return null;
return {
title: $title.textContent,
title: $title.getAttribute("data-title") || "",
objectId: steamGameUrl.split("/").pop(),
} as Steam250Game;
})