mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-08 14:10:52 -07:00
Check continued session greater than or equal to
This commit is contained in:
parent
22bc0b3f9a
commit
426fc09b17
1 changed files with 1 additions and 1 deletions
|
@ -653,4 +653,4 @@ class ActivityProcessor(object):
|
|||
'WHERE user_id = ? AND machine_id = ? AND media_type = ? '
|
||||
'ORDER BY stopped DESC',
|
||||
[user_id, machine_id, media_type])
|
||||
return int(started - last_session.get('stopped', 0) > plexpy.CONFIG.NOTIFY_CONTINUED_SESSION_THRESHOLD)
|
||||
return int(started - last_session.get('stopped', 0) >= plexpy.CONFIG.NOTIFY_CONTINUED_SESSION_THRESHOLD)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue