From e5a9205747b18e8d5d3b469342d2f7c589dada1f Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Thu, 6 Feb 2020 11:41:06 -0800 Subject: [PATCH] Always reload the web view when the showing state changes. Issue #1775 --- iOS/Article/WebViewController.swift | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/iOS/Article/WebViewController.swift b/iOS/Article/WebViewController.swift index afd1059ea..9ac2627e7 100644 --- a/iOS/Article/WebViewController.swift +++ b/iOS/Article/WebViewController.swift @@ -48,9 +48,7 @@ class WebViewController: UIViewController { } var isShowingExtractedArticle = false { didSet { - if isShowingExtractedArticle != oldValue { - loadWebView() - } + loadWebView() } }