Commit d0073394 authored by JC Brand's avatar JC Brand

Fixes #275 Custom status message doesn't reset.

parent fdb80e3d
......@@ -1416,7 +1416,7 @@
showStatusMessage: function (msg) {
msg = msg || this.model.get('status');
if (msg) {
if (typeof msg === "string") {
this.$el.find('p.user-custom-message').text(msg).attr('title', msg);
}
return this;
......
......@@ -19,6 +19,7 @@ Changelog
* #251 Non-minified builds for debugging. [jcbrand]
* #264 Remove unnecessary commas for ie8 compatibility. [Deuteu]
* #267 Unread messages counter wrongly gets incremented by chat state notifications. [Deuteu]
* #275 Custom status message doesn't reset. [jcbrand]
* #278 Unread messages counter doesn't unbind it's events. [Deuteu]
* #279 Handle more field types for MUC config forms. [gbonvehi]
* #280 New config option, ``hide_offline_users`` [gbonvehi]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment