adopt receivedby rename

This commit is contained in:
Green Sky 2024-04-20 15:20:32 +02:00
parent d948897c3e
commit 2a717c216d
No known key found for this signature in database

View File

@ -370,6 +370,7 @@ bool ZoxNGCHistorySync::onEvent(const Events::ZoxNGC_ngch_syncmsg& e) {
// find matches // find matches
Message3 matching_e = entt::null; Message3 matching_e = entt::null;
{ {
// TODO: use Contact::Components::MessageIsSame instead
auto view = reg.view<Message::Components::ToxGroupMessageID, Message::Components::ContactFrom, Message::Components::Timestamp>(); auto view = reg.view<Message::Components::ToxGroupMessageID, Message::Components::ContactFrom, Message::Components::Timestamp>();
view.use<Message::Components::Timestamp>(); view.use<Message::Components::Timestamp>();
for (const auto ent : view) { for (const auto ent : view) {
@ -438,7 +439,7 @@ bool ZoxNGCHistorySync::onEvent(const Events::ZoxNGC_ngch_syncmsg& e) {
} }
{ // now we also know they got the message { // now we also know they got the message
auto& list = reg.get_or_emplace<Message::Components::Remote::TimestampReceived>(matching_e).ts; auto& list = reg.get_or_emplace<Message::Components::ReceivedBy>(matching_e).ts;
// dont overwrite // dont overwrite
list.try_emplace(sync_by_c, now_ts); list.try_emplace(sync_by_c, now_ts);
// TODO: throw update? // TODO: throw update?