Skip to content

Commit

Permalink
take peername from newest row with peername, not oldest
Browse files Browse the repository at this point in the history
  • Loading branch information
zoff99 committed May 2, 2024
1 parent 40fa96e commit 0a76266
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1419,7 +1419,7 @@ public static String group_get_last_know_peername(final String group_identifier,
.group_identifierEq(group_identifier)
.tox_group_peer_pubkeyEq(peer_pubkey)
.tox_group_peernameNotEq("")
.orderBySent_timestampAsc()
.orderBySent_timestampDesc()
.limit(1).toList()
.get(0)
.tox_group_peername;
Expand Down

0 comments on commit 0a76266

Please sign in to comment.