Skip to content

Commit

Permalink
Update identities after trust (#1264)
Browse files Browse the repository at this point in the history
  • Loading branch information
Adimarantis authored Jun 17, 2023
1 parent 0c5993c commit 8726c4e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/java/org/asamk/signal/dbus/DbusSignalImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -1109,6 +1109,7 @@ public void trust() throws Error.Failure {
} catch (UnregisteredRecipientException e) {
throw new Error.Failure("The user " + e.getSender().getIdentifier() + " is not registered.");
}
updateIdentities();
}

@Override
Expand All @@ -1135,6 +1136,7 @@ public void trustVerified(String safetyNumber) throws Error.Failure {
} catch (UnregisteredRecipientException e) {
throw new Error.Failure("The user " + e.getSender().getIdentifier() + " is not registered.");
}
updateIdentities();
}
}

Expand Down

0 comments on commit 8726c4e

Please sign in to comment.