mirror of
https://github.com/ProjectSynthoria/SynthoriaArchive.git
synced 2025-03-12 07:26:54 +02:00
Fix keyError from pop (#407)
Remind me not to ever merge anything ever again
This commit is contained in:
parent
c0be2571e1
commit
f6735219f0
1 changed files with 1 additions and 1 deletions
|
@ -66,7 +66,7 @@ def static_cachebuster(filename):
|
|||
def modify_query(**new_values):
|
||||
args = flask.request.args.copy()
|
||||
|
||||
args.pop('p')
|
||||
args.pop('p', None)
|
||||
|
||||
for key, value in new_values.items():
|
||||
args[key] = value
|
||||
|
|
Loading…
Add table
Reference in a new issue