mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-23 03:18:49 +03:00
Mark own events as read again after sending
This commit is contained in:
parent
36e4405f25
commit
046b3f4da6
2 changed files with 13 additions and 4 deletions
|
@ -91,7 +91,7 @@ EventStore::EventStore(std::string room_id, QObject *)
|
||||||
room_id_,
|
room_id_,
|
||||||
txn_id,
|
txn_id,
|
||||||
e.content,
|
e.content,
|
||||||
[this, txn_id](const mtx::responses::EventId &,
|
[this, txn_id](const mtx::responses::EventId &event_id,
|
||||||
mtx::http::RequestErr err) {
|
mtx::http::RequestErr err) {
|
||||||
if (err) {
|
if (err) {
|
||||||
const int status_code =
|
const int status_code =
|
||||||
|
@ -104,7 +104,7 @@ EventStore::EventStore(std::string room_id, QObject *)
|
||||||
emit messageFailed(txn_id);
|
emit messageFailed(txn_id);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
emit messageSent(txn_id);
|
emit messageSent(txn_id, event_id.event_id.to_string());
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
event->data);
|
event->data);
|
||||||
|
@ -135,8 +135,17 @@ EventStore::EventStore(std::string room_id, QObject *)
|
||||||
this,
|
this,
|
||||||
&EventStore::messageSent,
|
&EventStore::messageSent,
|
||||||
this,
|
this,
|
||||||
[this](std::string txn_id) {
|
[this](std::string txn_id, std::string event_id) {
|
||||||
nhlog::ui()->debug("sent {}", txn_id);
|
nhlog::ui()->debug("sent {}", txn_id);
|
||||||
|
|
||||||
|
http::client()->read_event(
|
||||||
|
room_id_, event_id, [this, event_id](mtx::http::RequestErr err) {
|
||||||
|
if (err) {
|
||||||
|
nhlog::net()->warn(
|
||||||
|
"failed to read_event ({}, {})", room_id_, event_id);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
cache::client()->removePendingStatus(room_id_, txn_id);
|
cache::client()->removePendingStatus(room_id_, txn_id);
|
||||||
this->current_txn = "";
|
this->current_txn = "";
|
||||||
this->current_txn_error_count = 0;
|
this->current_txn_error_count = 0;
|
||||||
|
|
|
@ -91,7 +91,7 @@ signals:
|
||||||
void fetchedMore();
|
void fetchedMore();
|
||||||
|
|
||||||
void processPending();
|
void processPending();
|
||||||
void messageSent(std::string txn_id);
|
void messageSent(std::string txn_id, std::string event_id);
|
||||||
void messageFailed(std::string txn_id);
|
void messageFailed(std::string txn_id);
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
|
|
Loading…
Reference in a new issue