🐛 fix(api): Subscribe token

This commit is contained in:
web@ppanel
2024-12-14 00:33:04 +07:00
parent 19837a1032
commit 1932ba766c
8 changed files with 22 additions and 22 deletions
+2 -2
View File
@@ -83,8 +83,8 @@ export const useGlobalStore = create<GlobalStore>((set, get) => ({
if (type) return `https://${uuid}.${type}.${domain}`;
return `https://${uuid}.${domain}`;
} else {
if (type) return `https://${domain}${subscribe_path}?mark=${uuid}&type=${type}`;
return `https://${domain}${subscribe_path}?mark=${uuid}`;
if (type) return `https://${domain}${subscribe_path}?token=${uuid}&type=${type}`;
return `https://${domain}${subscribe_path}?token=${uuid}`;
}
});
},