Merge pull request #30 from thsrite/main

This commit is contained in:
jxxghp 2023-08-05 12:54:52 +08:00 committed by GitHub
commit 9d863e9cec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -577,7 +577,7 @@ class MediaSyncDel(_PluginBase):
for match in matches: for match in matches:
mtime = match[0] mtime = match[0]
# 排除已处理的媒体信息 # 排除已处理的媒体信息
if time < last_time: if last_time and time < last_time:
continue continue
mtype = match[1] mtype = match[1]