Merge branch 'alpha-fixes6' into 'master'

Fix a traceback to wrongful path to string convertion

See merge request openlp/openlp!187
This commit is contained in:
Tim Bentley 2020-05-11 18:28:37 +00:00
commit a9a96146b0
1 changed files with 1 additions and 1 deletions

View File

@ -610,7 +610,7 @@ class ImageMediaItem(MediaManagerItem):
for image in images:
name = image.file_path.name
thumbnail_path = self.generate_thumbnail_path(image)
service_item.add_from_image(image.file_path, name, background, str(thumbnail_path))
service_item.add_from_image(image.file_path, name, background, thumbnail_path)
return True
def check_group_exists(self, new_group):