Added a valid link check

This commit is contained in:
defnax 2022-01-18 18:51:48 +01:00
parent d508a8ea20
commit f770f1fc8e

View File

@ -578,10 +578,12 @@ void CreateGxsForumMsg::fileHashingFinished(QList<HashedFile> hashedFiles)
{
QString encodedImage;
uint32_t maxImageSize = 32000;
if (RsHtml::makeEmbeddedImage(hashedFile.filepath, encodedImage, 320*240, maxImageSize - 200 - link.toHtmlSize().length()))
{ QTextDocumentFragment fragment = QTextDocumentFragment::fromHtml(encodedImage);
ui.forumMessage->textCursor().insertFragment(fragment);
preview=true;
if (link.valid()){
if (RsHtml::makeEmbeddedImage(hashedFile.filepath, encodedImage, 320*240, maxImageSize - 200 - link.toHtmlSize().length()))
{ QTextDocumentFragment fragment = QTextDocumentFragment::fromHtml(encodedImage);
ui.forumMessage->textCursor().insertFragment(fragment);
preview=true;
}
}
}
if(!preview)