mirror of https://github.com/zulip/zulip.git
When subscribing to streams, send back the canonical stream name
(imported from commit 7803409878cca4627447bc64735ad71f56701a5c)
This commit is contained in:
parent
17e92ebe13
commit
4ffc6a2de1
|
@ -868,9 +868,9 @@ def add_subscriptions_backend(request, user_profile,
|
|||
stream = create_stream_if_needed(subscriber.realm, stream_name)
|
||||
did_subscribe = do_add_subscription(subscriber, stream)
|
||||
if did_subscribe:
|
||||
result["subscribed"].append(stream_name)
|
||||
result["subscribed"].append(stream.name)
|
||||
else:
|
||||
result["already_subscribed"].append(stream_name)
|
||||
result["already_subscribed"].append(stream.name)
|
||||
|
||||
# Inform the user if someone else subscribed them to stuff
|
||||
if subscriber != user_profile and result["subscribed"]:
|
||||
|
|
Loading…
Reference in New Issue