Skip to content

Commit

Permalink
Fixed typo. Bump version to 1.5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ManeraKai committed Mar 17, 2022
1 parent 7c53e64 commit 8677a2a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/assets/javascripts/helpers/youtube/piped-preferences.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ browser.storage.local.get(
let pipedBufferGoal = r.pipedBufferGoal ?? 10;
let pipedComments = r.pipedComments ?? true;
let pipedDisableLBRY = r.pipedDisableLBRY ?? false;
let pipedEnabledCodecs = r.pipedEnabledCodecs ?? "av1,vp9,avc";
let pipedEnabledCodecs = r.pipedEnabledCodecs ?? ["av1", "vp9", "avc"];
let pipedHomepage = r.pipedHomepage ?? "trending";
let pipedMinimizeDescription = r.pipedMinimizeDescription ?? false;
let pipedProxyLBRY = r.pipedProxyLBRY ?? false;
let pipedQuality = r.pipedQuality ?? 0;
let pipedRegion = r.pipedRegion ?? "US";
let pipedSelectedSkip = r.pipedSelectedSkip ?? [];
let pipedSelectedSkip = r.pipedSelectedSkip ?? ["sponsor", "interaction", "selfpromo", "music_offtopic"];
let pipedSponsorblock = r.pipedSponsorblock ?? true;
let pipedWatchHistory = r.pipedWatchHistory ?? false;

Expand Down
2 changes: 1 addition & 1 deletion src/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "LibRedirect",
"description": "A web extension that redirects popular sites to alternative privacy-friendly frontends and backends",
"version": "1.5.3",
"version": "1.5.4",
"manifest_version": 2,
"background": {
"page": "pages/background/background.html",
Expand Down

0 comments on commit 8677a2a

Please sign in to comment.