Commit 32ec2b46 authored by Joel Collins's avatar Joel Collins
Browse files

Fixed thumbnail data fallback

parent 3cfbb406
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -348,7 +348,7 @@ class CaptureObject(object):
        if thumbnail:
            return io.BytesIO(thumbnail)
        # If no thumbnail exists, serve the full image
        return self.data.getvalue()
        return self.data

    def save(self) -> None:
        """Write stream to file, and save/update metadata file"""