Skip to content

Commit

Permalink
Merge pull request #482 from thsrite/main
Browse files Browse the repository at this point in the history
fix bug
  • Loading branch information
jxxghp authored Sep 6, 2023
2 parents b6cb241 + 9869af9 commit fbef173
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/plugins/syncdownloadfiles/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def init_plugin(self, config: dict = None):
try:
self._scheduler.add_job(func=self.sync,
trigger="interval",
hours=float(self._time.strip()),
hours=float(str(self._time).strip()),
name="自动同步下载器文件记录")
logger.info(f"自动同步下载器文件记录服务启动,时间间隔 {self._time} 小时")
except Exception as err:
Expand Down

0 comments on commit fbef173

Please sign in to comment.