Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ImprovedTube committed Aug 8, 2024
1 parent 82e77fe commit b6bdac8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js&css/web-accessible/www.youtube.com/appearance.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
ImprovedTube.YouTubeExperiments = function () { if (document.documentElement.dataset.pageType === 'video' && window.yt?.config_?.EXPERIMENT_FLAGS) {
ImprovedTube.overrideFlags = function (flags, value) {
yt.config_.EXPERIMENT_FLAGS = new Proxy(yt.config_.EXPERIMENT_FLAGS, {
get: (t, p) => flags.includes(prop) ? value : t[p], // target & prop
get: (t, p) => flags.includes(p) ? value : t[p], //target & prop

Check warning on line 7 in js&css/web-accessible/www.youtube.com/appearance.js

View workflow job for this annotation

GitHub Actions / lint-and-test

Multiple spaces found before '//target & pro...'
set: () => true
});
};

Check warning on line 10 in js&css/web-accessible/www.youtube.com/appearance.js

View workflow job for this annotation

GitHub Actions / lint-and-test

Trailing spaces not allowed
Expand Down

0 comments on commit b6bdac8

Please sign in to comment.