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(
140
140
Future <void > _detectNavigationAwayFromDartApp (
141
141
NavigationInfo navigationInfo) async {
142
142
// 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):
144
144
if (_isInternalNavigation (navigationInfo)) return ;
145
145
final tabId = navigationInfo.tabId;
146
146
final debugInfo = await _fetchDebugInfo (navigationInfo.tabId);
@@ -163,6 +163,7 @@ bool _isInternalNavigation(NavigationInfo navigationInfo) {
163
163
'form_submit' ,
164
164
'link' ,
165
165
'manual_subframe' ,
166
+ 'reload' ,
166
167
].contains (navigationInfo.transitionType);
167
168
}
168
169
You can’t perform that action at this time.
0 commit comments