From e67a71ab3e8026937f288519437265a51fddf0f5 Mon Sep 17 00:00:00 2001 From: Jade Macho Date: Mon, 14 Oct 2024 22:13:54 +0200 Subject: [PATCH] hlsjs: Force enable by default --- mods/PatchForceHLSJS.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mods/PatchForceHLSJS.js b/mods/PatchForceHLSJS.js index 3d7bd0a..7a57e11 100644 --- a/mods/PatchForceHLSJS.js +++ b/mods/PatchForceHLSJS.js @@ -16,11 +16,11 @@ export default JadefinIntegrity("PatchAndroidHLSJS", import.meta.url, () => new } get isEnabled() { - return this.storage.get("isEnabled", false); + return this.storage.get("isEnabled2", true); } set isEnabled(value) { - this.storage.set("isEnabled", value); + this.storage.set("isEnabled2", value); } async init(name, url) {