diff --git a/vendor/DOtherSide/lib/src/Status/QClipboardProxy.cpp b/vendor/DOtherSide/lib/src/Status/QClipboardProxy.cpp index 58c495b9f8..8f4aca2bb1 100644 --- a/vendor/DOtherSide/lib/src/Status/QClipboardProxy.cpp +++ b/vendor/DOtherSide/lib/src/Status/QClipboardProxy.cpp @@ -54,8 +54,8 @@ QString QClipboardProxy::imageBase64() const const auto img = image(); QByteArray byteArray; QBuffer buffer(&byteArray); - img.save(&buffer, "PNG"); // writes the image in PNG format inside the buffer - return QStringLiteral("data:image/png;base64,") + byteArray.toBase64(); + img.save(&buffer, "JPG"); + return QStringLiteral("data:image/jpeg;base64,") + byteArray.toBase64(); } bool QClipboardProxy::hasUrls() const