diff options
Diffstat (limited to 'context.cpp')
-rw-r--r-- | context.cpp | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/context.cpp b/context.cpp index a138dd7..1fa24af 100644 --- a/context.cpp +++ b/context.cpp @@ -269,18 +269,10 @@ Context::newMessage(int viewtype) uint32_t Context::sendMessage(uint32_t chatId, DcMessage *message, QString attachment) { - QByteArray utf8attachFilename = attachment.toUtf8(); - if(strlen(utf8attachFilename.constData()) > 0){ + if (!attachment.isEmpty()) { + QByteArray utf8attachFilename = attachment.toUtf8(); dc_msg_set_file(message->m_message, utf8attachFilename.constData(), NULL); - - QString ImgBlobPath; - QTextStream (&ImgBlobPath) << dc_get_blobdir(m_context) << "/" << dc_msg_get_filename(message->m_message); - - printf("\nPush it into blob dir :%s\n", ImgBlobPath.toUtf8().constData()); - QFile::copy(attachment, ImgBlobPath.toUtf8().constData()); - dc_msg_set_file(message->m_message, ImgBlobPath.toUtf8().constData(), NULL); } - dc_prepare_msg(m_context, chatId, message->m_message); return dc_send_msg(m_context, chatId, message->m_message); } |