mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
Merge branch 'pr815'
This commit is contained in:
commit
ec20eef3e3
|
@ -122,7 +122,7 @@ HistoryKeeper::HistoryKeeper(GenericDdInterface *db_) :
|
||||||
|
|
||||||
if (idCur != idMax)
|
if (idCur != idMax)
|
||||||
{
|
{
|
||||||
QString cmd = QString("INSERT INTO sent_status (id, status) VALUES (%1, 1)").arg(idMax);
|
QString cmd = QString("INSERT INTO sent_status (id, status) VALUES (%1, 1);").arg(idMax);
|
||||||
db->exec(cmd);
|
db->exec(cmd);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -147,12 +147,12 @@ int HistoryKeeper::addChatEntry(const QString& chat, const QString& message, con
|
||||||
int chat_id = getChatID(chat, ctSingle).first;
|
int chat_id = getChatID(chat, ctSingle).first;
|
||||||
int sender_id = getAliasID(sender);
|
int sender_id = getAliasID(sender);
|
||||||
|
|
||||||
db->exec("BEGIN TRANSACTION");
|
db->exec("BEGIN TRANSACTION;");
|
||||||
db->exec(QString("INSERT INTO history (timestamp, chat_id, sender, message)") +
|
db->exec(QString("INSERT INTO history (timestamp, chat_id, sender, message) ") +
|
||||||
QString("VALUES (%1, %2, %3, '%4');")
|
QString("VALUES (%1, %2, %3, '%4');")
|
||||||
.arg(dt.toMSecsSinceEpoch()).arg(chat_id).arg(sender_id).arg(wrapMessage(message)));
|
.arg(dt.toMSecsSinceEpoch()).arg(chat_id).arg(sender_id).arg(wrapMessage(message)));
|
||||||
db->exec(QString("INSERT INTO sent_status (status) VALUES (%1)").arg(isSent));
|
db->exec(QString("INSERT INTO sent_status (status) VALUES (%1);").arg(isSent));
|
||||||
db->exec("COMMIT TRANSACTION");
|
db->exec("COMMIT TRANSACTION;");
|
||||||
|
|
||||||
messageID++;
|
messageID++;
|
||||||
return messageID;
|
return messageID;
|
||||||
|
|
|
@ -743,8 +743,9 @@ void ChatForm::loadHistory(QDateTime since, bool processUndelivered)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Show each messages
|
// Show each messages
|
||||||
MessageActionPtr ca = genMessageActionAction(ToxID::fromString(it.sender), it.message, false, msgDateTime);
|
ToxID msgSender = ToxID::fromString(it.sender);
|
||||||
if (it.isSent)
|
MessageActionPtr ca = genMessageActionAction(msgSender, it.message, false, msgDateTime);
|
||||||
|
if (it.isSent || !msgSender.isMine())
|
||||||
{
|
{
|
||||||
ca->markAsSent();
|
ca->markAsSent();
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user