fix 修复不刮削不生效bug

This commit is contained in:
thsrite
2024-04-29 13:19:41 +08:00
parent a45ac37ee3
commit 9b487eecbc
3 changed files with 6 additions and 4 deletions

View File

@@ -25,7 +25,7 @@ MoviePilot三方插件市场https://github.com/thsrite/MoviePilot-Plugins/
- [Emby观影报告 1.5](docs%2FEmbyReporter.md)
- 演员订阅 1.5
- [短剧刮削 3.2](docs%2FShortPlayMonitor.md)
- 云盘实时监控 1.8
- 云盘实时监控 2.0
- 源文件恢复 1.2
- [微信消息转发 2.2](docs%2FWeChatForward.md)
- 订阅下载统计 1.5

View File

@@ -208,11 +208,12 @@
"CloudLinkMonitor": {
"name": "云盘实时监控",
"description": "监控云盘目录文件变化,自动转移链接。",
"version": "1.9",
"version": "2.0",
"icon": "Linkease_A.png",
"author": "thsrite",
"level": 1,
"history": {
"v2.0": "修复不刮削不生效bug",
"v1.8": "fix S00转移",
"v1.7": "fix 刮削",
"v1.6": "可配置是否刮削",

View File

@@ -60,7 +60,7 @@ class CloudLinkMonitor(_PluginBase):
# 插件图标
plugin_icon = "Linkease_A.png"
# 插件版本
plugin_version = "1.9"
plugin_version = "2.0"
# 插件作者
plugin_author = "thsrite"
# 作者主页
@@ -145,7 +145,8 @@ class CloudLinkMonitor(_PluginBase):
# 是否刮削
_scraper_type = False
if mon_path.count("$") == 1:
_scraper_type = bool(mon_path.split("$")[1])
_scraper_type = mon_path.split("$")[1]
_scraper_type = True if _scraper_type == "True" else False
mon_path = mon_path.split("$")[0]
# 自定义转移方式