trying to uri quote the ISO time to make /media happy, weird bug

main
Mark Cotton 2023-08-29 22:22:39 -05:00
parent 2bc3b2a8d1
commit 457e00f2ef
1 changed files with 1 additions and 1 deletions

2
app.py
View File

@ -320,7 +320,7 @@ def camera_list_of_videos(esn=None):
een = session['een']
camera = een.get_camera_by_id(esn)
logging.debug(camera.get_list_of_videos(start_timestamp=een.time_before(hours=12), end_timestamp=een.time_now()))
logging.debug(camera.get_list_of_videos(start_timestamp=requests.utils.quote(een.time_before(hours=24)), end_timestamp=requests.utils.quote(een.time_now())))
values = {
"current_user": een.current_user,