Skip to content

Commit

Permalink
Remove redundant validation check for null image in ThumbnailWorker
Browse files Browse the repository at this point in the history
  • Loading branch information
wgergely committed Sep 15, 2024
1 parent 4ac8d0f commit 6c00047
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion bookmarks/threads/workers.py
Original file line number Diff line number Diff line change
Expand Up @@ -867,7 +867,6 @@ def process_data(self, ref):
# Let's check it against the source to make sure it's still valid.
if image and not image.isNull():
res = bookmarks_openimageio.is_up_to_date(source, destination)
print(res, source, destination)
if res == 1:
images.make_color(destination)
return True
Expand Down

0 comments on commit 6c00047

Please sign in to comment.