Skip to content

Commit

Permalink
Bug fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
bia-pain-bache committed Feb 7, 2024
1 parent aae973f commit 86f545d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ export default {

if (hostValue !== host) await env.bpb.put("host", host);

if (request.method === "POST" || !await env.bpb.get("fragConfigs") || hostValue !== host) {
if (request.method === "POST" || await env.bpb.get("fragConfigs") === null || hostValue !== host) {
await getVLESSConfig(env, userID);
await getFragVLESSConfig(env, userID);
}
Expand Down

0 comments on commit 86f545d

Please sign in to comment.