message_edit: Fix error handling if user has re-narrowed.

This commit is contained in:
Tim Abbott 2016-10-25 16:15:07 -07:00
parent 985b4072c0
commit ff575aed99
1 changed files with 4 additions and 2 deletions

View File

@ -102,8 +102,10 @@ exports.save = function (row, from_topic_edited_only) {
}
},
error: function (xhr, error_type, xhn) {
var message = channel.xhr_error_message("Error saving edit", xhr);
row.find(".edit_error").text(message).show();
if (msg_list === current_msg_list) {
var message = channel.xhr_error_message("Error saving edit", xhr);
row.find(".edit_error").text(message).show();
}
}
});
// The message will automatically get replaced when it arrives.