From a214b9d120d246652effd1a3a914639c78d0bab8 Mon Sep 17 00:00:00 2001 From: Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> Date: Sat, 22 Feb 2025 22:21:59 +0800 Subject: [PATCH] Fix komga text color --- src/plugins/multi/komga.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/plugins/multi/komga.ts b/src/plugins/multi/komga.ts index d76ae7136..943368e76 100644 --- a/src/plugins/multi/komga.ts +++ b/src/plugins/multi/komga.ts @@ -9,7 +9,7 @@ class KomgaPlugin implements Plugin.PluginBase { id = 'komga'; name = 'Komga'; icon = 'src/multi/komga/icon.png'; - version = '1.0.0'; + version = '1.0.1'; site = storage.get('url'); email = storage.get('email'); @@ -214,6 +214,11 @@ class KomgaPlugin implements Plugin.PluginBase { } }); + // Replace tags with the text inside so its not blue + $('a').each((_, a) => { + $(a).replaceWith($(a).text()); + }); + return $.xml(); }