fix folder init

This commit is contained in:
Tomas Groth 2024-03-03 18:10:21 +01:00
parent 849308ee70
commit 5837acbc7b
1 changed files with 3 additions and 1 deletions

View File

@ -80,7 +80,9 @@ class FolderSynchronizer(Synchronizer):
def check_connection(self):
return self.base_folder_path.exists() and self.song_history_folder_path.exists() and \
self.custom_folder_path.exists()
self.song_deleted_folder_path.exists() and self.custom_folder_path.exists() and \
self.custom_history_folder_path.exists() and custom_deleted_folder_path.exists() and \
self.service_folder_path.exists()
def initialize_remote(self):
self.song_history_folder_path.mkdir(parents=True, exist_ok=True)