1 Commity ff2b9895a1 ... 81ae243dc4

Autor SHA1 Wiadomość Data
  FFIB 81ae243dc4 update 1 tydzień temu
2 zmienionych plików z 2 dodań i 2 usunięć
  1. 1 1
      member/activity_mp_views.py
  2. 1 1
      member/models.py

+ 1 - 1
member/activity_mp_views.py

@@ -184,7 +184,7 @@ def activity_contribute_create(request):
184 184
         content=content,
185 185
         images=images,
186 186
         video_url=video_url,
187
-        user_name=signup_info.name,
187
+        user_name=user_name,
188 188
         user_avatar=signup_info.final_avatar,
189 189
     )
190 190
 

+ 1 - 1
member/models.py

@@ -1015,7 +1015,7 @@ class MemberActivityContributionInfo(BaseModelMixin, BrandInfoMixin):
1015 1015
             'content_type': self.content_type,
1016 1016
             'title': self.title,
1017 1017
             'content': self.content,
1018
-            'user_name': lensman_name if lensman_name else self.user_name,
1018
+            'user_name': self.user_name,
1019 1019
             'user_avatar': self.final_user_avatar,
1020 1020
             'images': self.final_images,
1021 1021
             'video_url': self.video_url or '',