@@ -467,7 +467,7 @@ public static void viewCurrentSite(Context context, SiteModel site, boolean open
467467 WPWebViewActivity .openUrlByUsingGlobalWPCOMCredentials (context , siteUrl );
468468 } else if (!TextUtils .isEmpty (site .getUsername ()) && !TextUtils .isEmpty (site .getPassword ())) {
469469 // Show self-hosted sites as authenticated since we should have the username & password
470- WPWebViewActivity .openUrlByUsingBlogCredentials (context , site , null , siteUrl , new String []{siteUrl } );
470+ WPWebViewActivity .openUrlByUsingBlogCredentials (context , site , null , siteUrl , new String []{}, false );
471471 } else {
472472 // Show non-wp.com sites without a password unauthenticated. These would be Jetpack sites that are
473473 // connected through REST API.
@@ -585,7 +585,8 @@ public static void browsePostOrPage(Context context, SiteModel site, PostModel p
585585 // from the passed URL, and internally redirects to it. EX:Published posts on a site with Plain
586586 // permalink structure settings.
587587 // Ref: https://github.com/wordpress-mobile/WordPress-Android/issues/4873
588- WPWebViewActivity .openUrlByUsingBlogCredentials (context , site , post , url , new String []{post .getLink ()});
588+ WPWebViewActivity
589+ .openUrlByUsingBlogCredentials (context , site , post , url , new String []{post .getLink ()}, true );
589590 }
590591 }
591592
0 commit comments