Skip to content

Commit

Permalink
Fixed "playback speed" shortcut
Browse files Browse the repository at this point in the history
  • Loading branch information
adokseo committed Nov 21, 2021
1 parent 490f7c3 commit e7aa2c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "'Improve YouTube!' (Video & YouTube Tools)🎧",
"short_name": "ImprovedTube",
"description": "__MSG_description_ext__",
"version": "3.783",
"version": "3.785",
"default_locale": "en",
"icons": {
"128": "icons/128.png",
Expand Down
2 changes: 1 addition & 1 deletion youtube-scripts.js
Original file line number Diff line number Diff line change
Expand Up @@ -3120,7 +3120,7 @@ ImprovedTube.shortcuts = function () {
'shortcut4320p'
].includes(key) === true) {
ImprovedTube['shortcutQuality'](key);
} else {
} else if (typeof ImprovedTube[key] === 'function') {
ImprovedTube[key]();
}

Expand Down

0 comments on commit e7aa2c4

Please sign in to comment.