From e60aaa73e525b499e6703573539db1f3f1934668 Mon Sep 17 00:00:00 2001 From: Radek Czajka Date: Fri, 22 Aug 2025 15:34:30 +0200 Subject: [PATCH 1/1] fix --- src/social/models.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/social/models.py b/src/social/models.py index e50ff0775..7f22f97d2 100644 --- a/src/social/models.py +++ b/src/social/models.py @@ -337,12 +337,14 @@ class UserList(Syncable, models.Model): favorites=True ) except cls.DoesNotExist: + n = now() if create: return cls.objects.create( user=user, favorites=True, - slug=get_random_hash(name), - updated_at=now() + slug=get_random_hash('favorites'), + updated_at=n, + reported_timestamp=n, ) else: return None -- 2.20.1