diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2020-11-20 23:46:49 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2020-11-20 23:46:49 +0100 |
commit | b78cf33473602835bd4e0695f222f2404851d7f6 (patch) | |
tree | 0336bed87312fb3b83f7cf75b2b8b84240e3636a | |
parent | updated indexes (diff) | |
download | newspipe-b78cf33473602835bd4e0695f222f2404851d7f6.tar.gz newspipe-b78cf33473602835bd4e0695f222f2404851d7f6.tar.bz2 newspipe-b78cf33473602835bd4e0695f222f2404851d7f6.zip |
fix variable name in user.py/_fields_base_read
-rw-r--r-- | newspipe/models/user.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newspipe/models/user.py b/newspipe/models/user.py index f01086bb..b88acead 100644 --- a/newspipe/models/user.py +++ b/newspipe/models/user.py @@ -83,7 +83,7 @@ class User(db.Model, UserMixin, RightMixin): @staticmethod def _fields_base_read(): - return {"date_created", "last_connection"} + return {"date_created", "last_seen"} @staticmethod def make_valid_nickname(nickname): |