Fix blueslip warning for stream email_address updates.

(imported from commit 6cc105113072eadff3781bdbf9e08e43974ade4c)
This commit is contained in:
Steve Howell
2014-02-05 14:52:12 -05:00
parent ffdc254e2d
commit dbcc406272

View File

@@ -480,6 +480,9 @@ exports.update_subscription_properties = function (stream_name, property, value)
case 'description':
update_stream_description(sub, value);
break;
case 'email_address':
sub.email_address = value;
break;
default:
blueslip.warn("Unexpected subscription property type", {property: property,
value: value});