From f164b2b677cd7576eff426b5d10bd8b1d59d2ab8 Mon Sep 17 00:00:00 2001 From: Vitor Mattos Date: Mon, 29 Aug 2022 13:28:17 -0300 Subject: [PATCH] Fix service item path --- openlp/core/ui/servicemanager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlp/core/ui/servicemanager.py b/openlp/core/ui/servicemanager.py index d29112f8e..e03fe92cf 100644 --- a/openlp/core/ui/servicemanager.py +++ b/openlp/core/ui/servicemanager.py @@ -589,7 +589,7 @@ class ServiceManager(QtWidgets.QWidget, RegistryBase, Ui_ServiceManager, LogMixi if item['service_item'].stored_filename: sha256_file_name = Path(item['service_item'].stored_filename) else: - sha256_file_name = Path(sha256_file_hash(frame_path)) / frame_path.suffix + sha256_file_name = Path(sha256_file_hash(frame_path) + frame_path.suffix) bundle = (frame_path, sha256_file_name) if bundle in write_list or str(frame_path) in missing_list: continue