fix path issue on subpath installations

This commit is contained in:
CodeDevMLH
2026-02-15 02:19:37 +01:00
parent 2bc7d90254
commit bf4b6da0f0
2 changed files with 3 additions and 3 deletions

View File

@@ -437,7 +437,7 @@ const waitForApiClientAndInitialize = () => {
const fetchPluginConfig = async () => {
try {
const response = await fetch('/MediaBarEnhanced/Config');
const response = await fetch('../MediaBarEnhanced/Config');
if (response.ok) {
const pluginConfig = await response.json();
if (pluginConfig) {