From 53b1b73909edc3ac1ac3bb432bcda934b92f7d67 Mon Sep 17 00:00:00 2001 From: Scott Nonnenberg Date: Fri, 27 Jul 2018 11:07:23 -0700 Subject: [PATCH] Ensure back button appears when safety number screen shows --- js/views/conversation_view.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/views/conversation_view.js b/js/views/conversation_view.js index e4bbe5c1e..799c7086d 100644 --- a/js/views/conversation_view.js +++ b/js/views/conversation_view.js @@ -158,7 +158,6 @@ // need a manual update call. onShowSafetyNumber: () => { this.showSafetyNumber(); - this.updateHeader(); }, onShowAllMedia: async () => { await this.showAllMedia(); @@ -982,6 +981,7 @@ model, }); this.listenBack(view); + this.updateHeader(); } },