mirror of
https://github.com/aunetx/deezer-linux.git
synced 2025-09-26 19:18:49 +02:00
31 lines
989 B
Diff
31 lines
989 B
Diff
From 3255d0db5760601c9a16fb4b175085cc40b27df2 Mon Sep 17 00:00:00 2001
|
|
From: josselinonduty <contact@josselinonduty.fr>
|
|
Date: Mon, 21 Apr 2025 00:47:43 +0900
|
|
Subject: [PATCH] fix: unset text/html as default mimetype
|
|
|
|
---
|
|
build/main.js | 7 +------
|
|
1 file changed, 1 insertion(+), 6 deletions(-)
|
|
|
|
diff --git a/build/main.js b/build/main.js
|
|
index 9284b6b..9623b50 100644
|
|
--- a/build/main.js
|
|
+++ b/build/main.js
|
|
@@ -2851,12 +2851,7 @@
|
|
this.tray.init(),
|
|
this.updater.init(),
|
|
this.network.watch(),
|
|
- this.powerSave.check(),
|
|
- this.deepLink.getSchemes().forEach((scheme) => {
|
|
- external_electron_namespaceObject.app.setAsDefaultProtocolClient(
|
|
- scheme
|
|
- );
|
|
- });
|
|
+ this.powerSave.check();
|
|
const dzrFilter = { urls: ["*://*/*"] },
|
|
DOMAINS_WHITELIST = [
|
|
"deezer.com",
|
|
--
|
|
2.43.0
|
|
|