fix tox clients reconnecting

This commit is contained in:
2023-08-02 20:18:20 +02:00
parent a262ab9d3a
commit 3c25162ba1
2 changed files with 11 additions and 3 deletions

View File

@ -100,7 +100,8 @@ bool ToxMessageManager::sendText(const Contact3 c, std::string_view message, boo
);
if (!res.has_value()) {
return true; // not online? TODO: check for other errors
std::cerr << "TMM: failed to send friend message\n";
//return true; // not online? TODO: check for other errors
}
} else if (
_cr.any_of<Contact::Components::ToxGroupEphemeral>(c)