diff options
author | Evgeny Zinoviev <me@ch1p.io> | 2023-02-14 16:34:26 +0300 |
---|---|---|
committer | Evgeny Zinoviev <me@ch1p.io> | 2023-02-14 16:34:26 +0300 |
commit | 9f0187c307f83a9f2fba85ac58397a2a89aab86b (patch) | |
tree | bad0a202176f495c087467058a648002c9f23a66 /src/ipcam_server.py | |
parent | 5cd9f89e2ddccb6a7960cae295517312a83f7308 (diff) |
ipcam_server: upd
Diffstat (limited to 'src/ipcam_server.py')
-rwxr-xr-x | src/ipcam_server.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/ipcam_server.py b/src/ipcam_server.py index 858bd2f..077dba6 100755 --- a/src/ipcam_server.py +++ b/src/ipcam_server.py @@ -101,11 +101,12 @@ class IPCamServerDatabase(SQLiteBase): cur = self.cursor() data = {} - cur.execute("SELECT camera, fix_time, motion_time FROM timestamps") - for cam, fix_time, motion_time in cur.fetchall(): + cur.execute("SELECT camera, fix_time, motion_time, motion_start_time FROM timestamps") + for cam, fix_time, motion_time, motion_start_time in cur.fetchall(): data[int(cam)] = { 'fix': int(fix_time), - 'motion': int(motion_time) + 'motion': int(motion_time), + 'motion_start': int(motion_start_time) } return data |