mirror of
https://github.com/status-im/status-mobile.git
synced 2025-02-26 23:31:03 +00:00
Fixes #9433 : this was due to the fact that `.-response-to` was returning nil, because of the dash in the name, instead in this cases `(aget .. "response-to")` should be used. Fixes #9431 : This was a left-over from the move from message-groups to message-list, and the code was not updated. Fixes #9430 #9429 Both of these were due to the same issue, cofx were wrongly passed to the function resulting in the db being updated but the fxs being discarded. There's still a separate issue that might result in messages not being saved on logout, because of a race condition (if you logout while is fetching messages, some of the message might not be saved). I will address that separately as we might be able to just save messages as they come in status-go, rather then having to pass them to status-react and back to status-go for saving. Signed-off-by: Andrea Maria Piana <andrea.maria.piana@gmail.com>