Skip to content

Commit 2bd9c4d

Browse files
committed
#3371 webappclientservice: try to fix sending of html again
Signed-off-by: Patrizio Bekerle <patrizio@bekerle.com>
1 parent 0791039 commit 2bd9c4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/services/webappclientservice.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ bool WebAppClientService::keepClipboard() {
8989
_clipboardContent = byteArray.toBase64();
9090
} else if (mimeData->hasHtml()) {
9191
_clipboardMimeType = "text/html";
92-
_clipboardContent = clipboard->text();
92+
_clipboardContent = mimeData->html();
9393
} else if (mimeData->hasText()) {
9494
_clipboardMimeType = "text/plain";
9595
_clipboardContent = clipboard->text();

0 commit comments

Comments
 (0)