Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Vahid Farid committed Mar 29, 2024
2 parents a723380 + af1e84a commit 5967697
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/panel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -619,7 +619,7 @@ export async function PostPanel(request: Request, env: Env): Promise<Response> {
await env.settings.put("IncludeOriginalConfigs", formData.get("original")?.toString() || "no")
await env.settings.put("IncludeMergedConfigs", formData.get("merged")?.toString() || "no")
await env.settings.put("BlockPorn", formData.get("block_porn")?.toString() || "no")
await env.settings.put("EnableFragments", formData.get("enable_fragments")?.toString() || "yes")
await env.settings.put("EnableFragments", formData.get("enable_fragments")?.toString() || "no")

let proxies = (await env.settings.get("ManualProxies"))?.split("\n").filter(t => t.trim().length > 0) || []
if (!proxies.length) {
Expand Down

0 comments on commit 5967697

Please sign in to comment.