Skip to content

Commit 2b6fbe4

Browse files
committed
FIX: webView:didStartProvisionalNavigation: should not reset progress
Because the observer for `estimatedProgress` has already been fired before and set a value > 0.0 to the progress bar This bug was discovered during implementation of #515
1 parent b5e9d16 commit 2b6fbe4

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

Sources/InAppSettingsKit/Controllers/IASKAppSettingsWebViewController.m

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,6 @@ - (void)goForward {
312312
- (void)webView:(WKWebView *)webView didStartProvisionalNavigation:(WKNavigation *)navigation {
313313
// Show progress:
314314
[self.activityIndicatorView startAnimating];
315-
self.progressView.progress = 0.0;
316315
}
317316

318317
// Tells the delegate that navigation is complete.

0 commit comments

Comments
 (0)