File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
dwds/debug_extension_mv3/web Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ Future<void> _handleRuntimeMessages(
140140Future <void > _detectNavigationAwayFromDartApp (
141141 NavigationInfo navigationInfo) async {
142142 // Ignore any navigation events within the page itself (e.g., opening a link,
143- // reloading an IFRAME, etc):
143+ // reloading the page, reloading an IFRAME, etc):
144144 if (_isInternalNavigation (navigationInfo)) return ;
145145 final tabId = navigationInfo.tabId;
146146 final debugInfo = await _fetchDebugInfo (navigationInfo.tabId);
@@ -163,6 +163,7 @@ bool _isInternalNavigation(NavigationInfo navigationInfo) {
163163 'form_submit' ,
164164 'link' ,
165165 'manual_subframe' ,
166+ 'reload' ,
166167 ].contains (navigationInfo.transitionType);
167168}
168169
You can’t perform that action at this time.
0 commit comments