From eeb069cd91e64089972828192a5cc7ac6b4740ef Mon Sep 17 00:00:00 2001 From: Peter Njeim Date: Sat, 23 Mar 2024 19:16:52 -0300 Subject: [PATCH] fix: update auth token suffix --- src/file.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/file.ts b/src/file.ts index 46e5b67..fe5f325 100644 --- a/src/file.ts +++ b/src/file.ts @@ -12,7 +12,7 @@ const getApiUrl = (id: number, type: FileType, index: number): string => { }; const getApiAuth = (id: number, type: FileType, index: number): string => { - const suffix = "%%%@"; + const suffix = "7%0?7a!"; const code = `${id}${type}${index}${suffix}`; return md5(code).slice(0, 4); };