Skip to content

Commit e3261a8

Browse files
committed
Fixed #2209 gp not working
1 parent dbfb7b3 commit e3261a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content_scripts/common/default.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ export default function(api, clipboard, insert, normal, hints, visual, front, br
445445
mapkey('gp', '#4Go to the playing tab', function() {
446446
RUNTIME('getTabs', { queryInfo: {audible: true}}, response => {
447447
if (response.tabs?.at(0)) {
448-
tab = response.tabs[0]
448+
const tab = response.tabs[0]
449449
RUNTIME('focusTab', {
450450
windowId: tab.windowId,
451451
tabId: tab.id

0 commit comments

Comments
 (0)