Merge pull request #1371 from bookwyrm-social/streams-fix

Fixes error breaking registration
This commit is contained in:
Mouse Reeve 2021-09-07 09:55:13 -07:00 committed by GitHub
commit 7bad2a34c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -355,7 +355,7 @@ def populate_streams_on_account_create(sender, instance, created, *args, **kwarg
if not created or not instance.local: if not created or not instance.local:
return return
for stream in streams.values(): for stream in streams:
populate_stream_task.delay(stream, instance.id) populate_stream_task.delay(stream, instance.id)