fixed session durations of more than 1 day (#863)
This commit is contained in:
parent
abd5db8ad4
commit
842fdb0b0c
|
@ -33,7 +33,7 @@ class UserLoginStageView(StageView):
|
|||
backend=backend,
|
||||
)
|
||||
delta = timedelta_from_string(self.executor.current_stage.session_duration)
|
||||
if delta.seconds == 0:
|
||||
if delta.total_seconds() == 0:
|
||||
self.request.session.set_expiry(0)
|
||||
else:
|
||||
self.request.session.set_expiry(delta)
|
||||
|
|
Reference in New Issue