strip input [/live]

remotes/1693176582716663532/tmp_refs/heads/watchparty
Aevann1 2022-09-24 02:21:32 +02:00
parent 33c715b89e
commit 677a31f80d
1 changed files with 2 additions and 2 deletions

View File

@ -481,7 +481,7 @@ if SITE == 'pcmemes.net':
@app.post('/live/add')
@admin_level_required(2)
def live_add(v):
id = request.values.get('id')
id = request.values.get('id').strip()
live_cached = cache.get('live_cached') or [[],[]]
@ -501,7 +501,7 @@ if SITE == 'pcmemes.net':
@app.post('/live/remove')
@admin_level_required(2)
def live_remove(v):
id = request.values.get('id')
id = request.values.get('id').strip()
if not id: abort(400)
streamer = g.db.get(Streamer, id)
if streamer: