Skip to content

Commit

Permalink
2.5.16
Browse files Browse the repository at this point in the history
- 修复由于 LOG 问题可能导致无法添加 RSS 规则的 bug
- 新增 AB_RSS_REFRESH 的选项
  • Loading branch information
EstrellaXD committed Jul 20, 2022
1 parent 5ffe482 commit 6131e50
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -165,6 +165,7 @@ cython_debug/
/src/conf/const_dev.py
/config
/src/tester.py
/src/config

/src/parser/analyser/tmdb_parser.py

Expand Down
1 change: 0 additions & 1 deletion src/conf/const.py
@@ -1,7 +1,6 @@
# -*- encoding: utf-8 -*-

DEFAULT_SETTINGS = {
"version": "2.5.15",
"data_version": 4.0,
"host_ip": "localhost:8080",
"sleep_time": 7200,
Expand Down
2 changes: 1 addition & 1 deletion src/parser/title_parser.py
Expand Up @@ -56,7 +56,7 @@ def return_dict(self, _raw: str):
"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)
Expand Down

0 comments on commit 6131e50

Please sign in to comment.