From aa9dcf5adf0a512ad258c6cbc64dd330cd30f8f3 Mon Sep 17 00:00:00 2001 From: TheBrokenRail Date: Sun, 20 Mar 2022 17:15:37 -0400 Subject: [PATCH] Fix Bug --- manifest.json | 2 +- src/page.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/manifest.json b/manifest.json index 42f6c20..dbbe0d3 100644 --- a/manifest.json +++ b/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 2, "name": "Force High-Resolution DisneyNOW", "author": "TheBrokenRail", - "version": "1.1", + "version": "1.2", "description": "This browser extension forces DisneyNOW to use their higher-resolution video stream by imitating the Android app. (It also blocks DisneyNOW ads.)", "homepage_url": "https://gitea.thebrokenrail.com/TheBrokenRail/force-high-resolution-disneynow", "content_scripts": [ diff --git a/src/page.js b/src/page.js index 4e5125f..5d0f146 100644 --- a/src/page.js +++ b/src/page.js @@ -50,7 +50,7 @@ function addResolutionInfo(player) { let p = document.getElementById(id); if (!p) { // Create - const p = document.createElement('P'); + p = document.createElement('P'); p.id = id; // Add

element to DOM.