Fix service item path

This commit is contained in:
Vitor Mattos 2022-08-29 13:28:17 -03:00
parent e14307111b
commit f164b2b677
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