5.2 beta 2 thumbnails not showing

Making certain I correctly followed your suggestions below, added the print line to imagethumb.py
But running the Gramps console generated ABSOLUTELY NOTHING to the console when executing the addon Tools → Utilities → Thumbnail Generator… on a freshly imported example.gramps with the media path preferences reset to the appropriate folder.

So I didn’t follow your instructions correctly (I put in 2 print statements in case the if criteria wasn’t true) or the “if mime_type:” wasn’t called

class ImageThumb(Thumbnailer):
    def is_supported(self, mime_type):
        if mime_type:
            print (mime_type)
            return mime_type.startswith("image")
        else:
            print (mime_type)
            return False