Check images exported after export
This commit is contained in:
@@ -1667,12 +1667,21 @@ class Export(object):
|
|||||||
|
|
||||||
self.file_size = os.path.getsize(filepath)
|
self.file_size = os.path.getsize(filepath)
|
||||||
|
|
||||||
|
exported_thumb = exported_art = False
|
||||||
if os.path.exists(images_folder):
|
if os.path.exists(images_folder):
|
||||||
for f in os.listdir(images_folder):
|
for f in os.listdir(images_folder):
|
||||||
|
if f.endswith('.thumb.jpg'):
|
||||||
|
exported_thumb = True
|
||||||
|
elif f.endswith('.art.jpg'):
|
||||||
|
exported_art = True
|
||||||
|
|
||||||
image_path = os.path.join(images_folder, f)
|
image_path = os.path.join(images_folder, f)
|
||||||
if os.path.isfile(image_path):
|
if os.path.isfile(image_path):
|
||||||
self.file_size += os.path.getsize(image_path)
|
self.file_size += os.path.getsize(image_path)
|
||||||
|
|
||||||
|
self.thumb_level = self.thumb_level if exported_thumb else 0
|
||||||
|
self.art_level = self.art_level if exported_art else 0
|
||||||
|
|
||||||
self.success = True
|
self.success = True
|
||||||
logger.info("Tautulli Exporter :: Successfully exported to '%s'", filepath)
|
logger.info("Tautulli Exporter :: Successfully exported to '%s'", filepath)
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user