Remote control close_tab should not ask for confirmation

This commit is contained in:
Kovid Goyal
2020-07-16 12:55:25 +05:30
parent 384ccb4fc7
commit 6ea5027bf6
2 changed files with 5 additions and 3 deletions

View File

@@ -36,7 +36,7 @@ If specified close the tab this command is run in, rather than the active tab.
for tab in self.tabs_for_match_payload(boss, window, payload_get):
if window:
if tab:
boss.close_tab(tab)
boss.close_tab_no_confirm(tab)
close_tab = CloseTab()