Reformat code

This commit is contained in:
AsamK 2023-06-05 19:30:18 +02:00
parent a96c4938b1
commit 4f8da7819e
4 changed files with 27 additions and 28 deletions

View file

@ -38,15 +38,15 @@ public class TrustCommand implements JsonRpcLocalCommand {
var recipentString = ns.getString("recipient");
var recipient = CommandUtil.getSingleRecipientIdentifier(recipentString, m.getSelfNumber());
if (Boolean.TRUE.equals(ns.getBoolean("trust-all-known-keys"))) {
boolean res;
try {
res = m.trustIdentityAllKeys(recipient);
final var res = m.trustIdentityAllKeys(recipient);
if (!res) {
throw new UserErrorException(
"Failed to set the trust for this number, make sure the number is correct.");
}
} catch (UnregisteredRecipientException e) {
throw new UserErrorException("The user " + e.getSender().getIdentifier() + " is not registered.");
}
if (!res) {
throw new UserErrorException("Failed to set the trust for this number, make sure the number is correct.");
}
} else {
var safetyNumber = ns.getString("verified-safety-number");
if (safetyNumber == null) {