mirror of
https://github.com/zulip/zulip.git
synced 2025-11-06 23:13:25 +00:00
Fix blueslip warning for stream email_address updates.
(imported from commit 6cc105113072eadff3781bdbf9e08e43974ade4c)
This commit is contained in:
@@ -480,6 +480,9 @@ exports.update_subscription_properties = function (stream_name, property, value)
|
|||||||
case 'description':
|
case 'description':
|
||||||
update_stream_description(sub, value);
|
update_stream_description(sub, value);
|
||||||
break;
|
break;
|
||||||
|
case 'email_address':
|
||||||
|
sub.email_address = value;
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
blueslip.warn("Unexpected subscription property type", {property: property,
|
blueslip.warn("Unexpected subscription property type", {property: property,
|
||||||
value: value});
|
value: value});
|
||||||
|
|||||||
Reference in New Issue
Block a user