Merge branch 'bugfix/service_item_path' into 'master'

Fix service item path

Closes #1154

See merge request openlp/openlp!490
This commit is contained in:
Raoul Snyman 2022-09-29 02:33:03 +00:00
commit 12af34d1cc
1 changed files with 1 additions and 1 deletions

View File

@ -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