- 修复由于 LOG 问题可能导致无法添加 RSS 规则的 bug
- 新增 AB_RSS_REFRESH 的选项
This commit is contained in:
EstrellaXD
2022-07-20 10:23:34 +08:00
parent 5ffe48238d
commit 6131e50f24
3 changed files with 2 additions and 2 deletions

1
.gitignore vendored
View File

@@ -165,6 +165,7 @@ cython_debug/
/src/conf/const_dev.py
/config
/src/tester.py
/src/config
/src/parser/analyser/tmdb_parser.py

View File

@@ -1,7 +1,6 @@
# -*- encoding: utf-8 -*-
DEFAULT_SETTINGS = {
"version": "2.5.15",
"data_version": 4.0,
"host_ip": "localhost:8080",
"sleep_time": 7200,

View File

@@ -56,7 +56,7 @@ class TitleParser:
"added": False,
"eps_collect": True if episode.episode > 1 else False,
}
logger.debug(f"RAW:{raw} >> {episode.title_en}")
logger.debug(f"RAW:{_raw} >> {episode.title_en}")
return data
except Exception as e:
logger.debug(e)