This commit is contained in:
thsrite
2024-07-17 16:21:41 +08:00
parent 88795be2db
commit 417bc9da18
3 changed files with 5 additions and 4 deletions

View File

@@ -23,7 +23,7 @@ MoviePilot三方插件市场https://github.com/thsrite/MoviePilot-Plugins/
- 同步CookieCloud v1.2
- 日程提醒 v1.0
- 订阅提醒 v1.1
- [Emby观影报告 v1.5](docs%2FEmbyReporter.md)
- [Emby观影报告 v1.6](docs%2FEmbyReporter.md)
- 演员订阅 v2.1
- [短剧刮削 v3.2](docs%2FShortPlayMonitor.md)
- 云盘实时监控 v2.4.6

View File

@@ -203,11 +203,12 @@
"name": "Emby观影报告",
"description": "推送Emby观影报告需Emby安装Playback Report 插件。",
"labels": "Emby",
"version": "1.5",
"version": "1.6",
"icon": "Pydiocells_A.png",
"author": "thsrite",
"level": 1,
"history": {
"v1.6": "fix #67",
"v1.5": "按观影市场排序",
"v1.4": "支持自定义emby && 支持每日一言",
"v1.3": "修复bug",

View File

@@ -33,7 +33,7 @@ class EmbyReporter(_PluginBase):
# 插件图标
plugin_icon = "Pydiocells_A.png"
# 插件版本
plugin_version = "1.5"
plugin_version = "1.6"
# 插件作者
plugin_author = "thsrite"
# 作者主页
@@ -652,7 +652,7 @@ class EmbyReporter(_PluginBase):
except Exception:
continue
if index > 0:
if index >= 0:
save_path = "/public/report.jpg"
if Path(save_path).exists():
Path.unlink(Path(save_path))