Skip to content

Commit

Permalink
Fixed #2209 gp not working
Browse files Browse the repository at this point in the history
  • Loading branch information
brookhong committed Dec 1, 2024
1 parent dbfb7b3 commit e3261a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/content_scripts/common/default.js
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ export default function(api, clipboard, insert, normal, hints, visual, front, br
mapkey('gp', '#4Go to the playing tab', function() {
RUNTIME('getTabs', { queryInfo: {audible: true}}, response => {
if (response.tabs?.at(0)) {
tab = response.tabs[0]
const tab = response.tabs[0]
RUNTIME('focusTab', {
windowId: tab.windowId,
tabId: tab.id
Expand Down

0 comments on commit e3261a8

Please sign in to comment.