Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions backend/src/module/core/program.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,8 @@ async def startup(self):
async def start(self):
self.stop_event.clear()
settings.load()
while not self.downloader_status:
logger.warning("Downloader is not running.")
logger.info("Waiting for downloader to start.")
await asyncio.sleep(30)
if not self.downloader_status:
logger.warning("Unable to connect to the downloader, some features may not be available until connected.")
if self.enable_renamer:
self.rename_start()
if self.enable_rss:
Expand Down