import_realm: Fix stream `rendered_description` not being set.

While importing a realm, the stream dictionaries in data['zerver_stream']
already contains the field named `rendered_description`, which is set to
`""`. This lead the code to assume that the stream rendered_description
was already set, due to which, it was not setting the rendered_description
field for any stream.
This commit is contained in:
Priyansh Garg 2021-06-23 12:50:35 +05:30 committed by Tim Abbott
parent 3129895818
commit 6d39dd9d01
1 changed files with 0 additions and 2 deletions

View File

@ -920,8 +920,6 @@ def do_import_realm(import_dir: Path, subdomain: str, processes: int = 1) -> Rea
re_map_foreign_keys(data, "zerver_stream", "realm", related_table="realm")
# Handle rendering of stream descriptions for import from non-Zulip
for stream in data["zerver_stream"]:
if "rendered_description" in stream:
continue
stream["rendered_description"] = render_stream_description(stream["description"])
bulk_import_model(data, Stream)