diff --git a/static/js/subs.js b/static/js/subs.js index d3350b656f..8854f75cf3 100644 --- a/static/js/subs.js +++ b/static/js/subs.js @@ -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});