chore: updates

This commit is contained in:
Simon Ding
2024-11-20 19:20:14 +08:00
parent 8df7b8665b
commit ee14cc63b8
2 changed files with 6 additions and 1 deletions

View File

@@ -12,7 +12,7 @@
![GitHub go.mod Go version](https://img.shields.io/github/go-mod/go-version/simon-ding/polaris)
**Polaris 是一个电视剧和电影的追踪下载软件。对动漫日剧美剧都有良好的匹配,支持webdav或者本地存储。**
**Polaris 是一个电视剧和电影的追踪下载软件。对美剧动漫日剧都有良好的匹配,支持多种存储方式webdav、alist、本地存储**
</div>

View File

@@ -2,6 +2,7 @@ package core
import (
"fmt"
"os"
"path/filepath"
"polaris/db"
"polaris/ent"
@@ -20,6 +21,10 @@ import (
func (c *Client) addSysCron() {
c.registerCronJob("check_running_tasks", "@every 1m", c.checkTasks)
c.registerCronJob("check_available_medias_to_download", "0 0 * * * *", func() error {
v := os.Getenv("NO_AUTO_DOWNLOAD")
if v == "true" {
return nil
}
c.downloadAllTvSeries()
c.downloadAllMovies()
return nil