Fixes usersettings never reached the client's browser
(cherry picked from commit 8e235af)
This commit is contained in:
parent
50ff0d810f
commit
6e632d02a0
1 changed files with 1 additions and 1 deletions
|
|
@ -474,7 +474,7 @@ class User(UserMixin):
|
|||
|
||||
class SessionUser(User):
|
||||
def __init__(self, user):
|
||||
User.__init__(self, user._username, user._passwordHash, user._active, user._roles, user._apikey)
|
||||
User.__init__(self, user._username, user._passwordHash, user._active, user._roles, user._apikey, user._settings)
|
||||
|
||||
import string
|
||||
import random
|
||||
|
|
|
|||
Loading…
Reference in a new issue