GNOME Bugzilla – Bug 725064
Don't crash when leaving a room without a channel
Last modified: 2014-02-24 15:06:50 UTC
If the channel disappears, for example because we were disconnected and it was not restored, just remove the room from our data structures.
Created attachment 270134 [details] [review] Don't crash when leaving a room without a channel
Review of attachment 270134 [details] [review]: ::: src/application.js @@ +393,3 @@ if (!message.length) message = _("Good Bye"); // TODO - our first setting? + if (room.channel) { Just move this above to the else part: } else if (room.channel) {
Pushed with suggested change. Attachment 270134 [details] pushed as d96c6fb - Don't crash when leaving a room without a channel