Skip to content

Commit

Permalink
修复重复下载问题
Browse files Browse the repository at this point in the history
  • Loading branch information
Hotwill committed Sep 9, 2023
1 parent b506388 commit 22620d3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/rss.py
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ def rssdownload(self):
media_info.set_download_info(download_setting=match_info.get("download_setting"),
save_path=match_info.get("save_path"))
# 插入数据库历史记录
# self.rsshelper.insert_rss_torrents(media_info)
self.rsshelper.insert_rss_torrents(media_info)
# 加入下载列表
if media_info not in rss_download_torrents:
rss_download_torrents.append(media_info)
Expand Down Expand Up @@ -677,7 +677,7 @@ def __update_over_edition(download_item):
continue

# 插入数据库历史记录
self.rsshelper.insert_rss_torrents(item)
# self.rsshelper.insert_rss_torrents(item)

if item.over_edition:
# 更新洗版订阅
Expand Down
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
APP_VERSION = 'v3.2.3'
APP_VERSION = 'v3.2.4'

0 comments on commit 22620d3

Please sign in to comment.