From 87c009f7b45debd79730a2926f95346d918cbad2 Mon Sep 17 00:00:00 2001 From: Anthony Donlon Date: Thu, 20 Nov 2025 10:11:41 +0800 Subject: [PATCH] editor/server: fix some parameters are not auto-updating --- editor/server/share.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/editor/server/share.py b/editor/server/share.py index 4c37f8a..1638544 100644 --- a/editor/server/share.py +++ b/editor/server/share.py @@ -65,5 +65,8 @@ def get(name: str): **params, **get_common_cf_template_params(), } + params.pop('time') + params.pop('ray_id') + params.pop('client_ip') # TODO: cache return render_cf_error_page(params=params, allow_html=False, use_cdn=True, show_creator=True), 200