using the new url escaping in EagleEyev3 0.0.18

main
Mark Cotton 2023-08-30 09:01:55 -05:00
parent 457e00f2ef
commit 132110080b
2 changed files with 2 additions and 2 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=requests.utils.quote(een.time_before(hours=24)), end_timestamp=requests.utils.quote(een.time_now())))
logging.debug(camera.get_list_of_videos(start_timestamp=een.time_before(hours=24), end_timestamp=een.time_now()))
values = {
"current_user": een.current_user,

View File

@ -14,7 +14,7 @@ Werkzeug==2.3.6
gunicorn==20.1.0
cachelib==0.10.2
Flask-Session==0.5.0
EagleEyev3>=0.0.17
EagleEyev3>=0.0.18
tqdm
pandas
numpy