Fixes foreign key field setting wrong value on activity

This commit is contained in:
Mouse Reeve 2020-12-13 14:53:25 -08:00
parent 44cbf7c07f
commit 5c7ac46116
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ class ActivitypubFieldMixin:
if isinstance(activity.get(key), list):
activity[key] += formatted
else:
activity[key] = value
activity[key] = formatted
def field_to_activity(self, value):