9
0
mirror of https://github.com/donlon/cloudflare-error-page.git synced 2025-12-19 14:59:28 +00:00

editor/server/share: fix popping fields does not exist

This commit is contained in:
Anthony Donlon
2025-11-22 03:33:23 +08:00
parent 6874cf4634
commit 57d0063fc3

View File

@@ -100,9 +100,9 @@ def get(name: str):
else: else:
return abort(404) return abort(404)
params: dict = item.params params: dict = item.params
params.pop('time') params.pop('time', None)
params.pop('ray_id') params.pop('ray_id', None)
params.pop('client_ip') params.pop('client_ip', None)
if is_json: if is_json:
return jsonify({ return jsonify({