Fix problem with "|" character in game title

This commit is contained in:
redphx
2024-09-04 20:19:31 +07:00
parent 8d44dab04d
commit e952bf07c8
3 changed files with 3 additions and 3 deletions

View File

@@ -29,7 +29,7 @@ export class ProductDetailsPage {
return;
}
const titleSlug = matches.groups.titleSlug;
const titleSlug = matches.groups.titleSlug.replaceAll('\%' + '7C', '-');
const productId = matches.groups.productId;
AppInterface.downloadWallpapers(titleSlug, productId);
} catch (e) {}