From e2f792d5ab9b7a9ce386065d408fa8c75a87877e Mon Sep 17 00:00:00 2001 From: Mukhtar Akere Date: Sat, 22 Mar 2025 06:05:53 +0100 Subject: [PATCH] hotfix xml --- doc/config.full.json | 6 ++++-- pkg/debrid/debrid/xml.go | 1 - 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/doc/config.full.json b/doc/config.full.json index 8b91ffa..8ef74a3 100644 --- a/doc/config.full.json +++ b/doc/config.full.json @@ -93,8 +93,10 @@ "use_auth": false, "discord_webhook_url": "https://discord.com/api/webhooks/...", "webdav": { - "torrents_refresh_interval": "5m", + "torrents_refresh_interval": "15s", "download_links_refresh_interval": "1h", - "rc_url": "http://192.168.0.219:9990" + "rc_url": "http://192.168.0.219:9990", + "rc_user": "your_rclone_rc_user", + "rc_pass": "your_rclone_rc_pass" } } \ No newline at end of file diff --git a/pkg/debrid/debrid/xml.go b/pkg/debrid/debrid/xml.go index 749b72a..80dfcce 100644 --- a/pkg/debrid/debrid/xml.go +++ b/pkg/debrid/debrid/xml.go @@ -19,7 +19,6 @@ func (c *Cache) RefreshXml() error { return fmt.Errorf("failed to refresh XML for %s: %v", parent, err) } } - c.logger.Debug().Msgf("Refreshed XML cache for %s", c.client.GetName()) return nil }