hotfix xml

This commit is contained in:
Mukhtar Akere
2025-03-22 06:05:53 +01:00
parent 49875446b4
commit e2f792d5ab
2 changed files with 4 additions and 3 deletions

View File

@@ -93,8 +93,10 @@
"use_auth": false, "use_auth": false,
"discord_webhook_url": "https://discord.com/api/webhooks/...", "discord_webhook_url": "https://discord.com/api/webhooks/...",
"webdav": { "webdav": {
"torrents_refresh_interval": "5m", "torrents_refresh_interval": "15s",
"download_links_refresh_interval": "1h", "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"
} }
} }

View File

@@ -19,7 +19,6 @@ func (c *Cache) RefreshXml() error {
return fmt.Errorf("failed to refresh XML for %s: %v", parent, err) return fmt.Errorf("failed to refresh XML for %s: %v", parent, err)
} }
} }
c.logger.Debug().Msgf("Refreshed XML cache for %s", c.client.GetName()) c.logger.Debug().Msgf("Refreshed XML cache for %s", c.client.GetName())
return nil return nil
} }