Skip to content

Commit

Permalink
Merge pull request #1302 from mvegaca/Issue1299-webview
Browse files Browse the repository at this point in the history
Issue1299 webview
  • Loading branch information
ralarcon committed Oct 13, 2017
2 parents 371ed4f + 864b754 commit 4e2c294
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -105,7 +105,7 @@ public void Retry()

public void GoBack() => _webView?.GoBack();

public bool CanGoBack => _webView?.CanGoBack ?? false;
public bool CanGoBack => _webView == null ? false : _webView.CanGoBack;

public void GoForward() => _webView?.GoForward();

Expand Down

0 comments on commit 4e2c294

Please sign in to comment.