From fe0306e6be136f90ca12e647611fba12ab5de483 Mon Sep 17 00:00:00 2001 From: colefranz Date: Sat, 3 Feb 2018 15:20:01 -0700 Subject: [PATCH] issue-2023: move opened event out of selected conversation check Going through the git history the existing logic of "dont do this if it's already selected" was just for audio or video QOL enhancements to not stop playing when the same conversation is selected. --- js/views/inbox_view.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/views/inbox_view.js b/js/views/inbox_view.js index ceb359894..2263577e1 100644 --- a/js/views/inbox_view.js +++ b/js/views/inbox_view.js @@ -28,8 +28,8 @@ $el = view.$el; } $el.prependTo(this.el); - conversation.trigger('opened'); } + conversation.trigger('opened'); }, });