mirror of
https://github.com/AsamK/signal-cli
synced 2025-08-29 18:40:39 +00:00
Add error message when creating sende keys path fails
This commit is contained in:
parent
bddff2cb88
commit
6fcec33ab6
1 changed files with 1 additions and 1 deletions
|
@ -181,7 +181,7 @@ public class SenderKeyRecordStore implements org.whispersystems.libsignal.groups
|
|||
try {
|
||||
IOUtils.createPrivateDirectories(senderKeysPath);
|
||||
} catch (IOException e) {
|
||||
throw new AssertionError("Failed to create sender keys path", e);
|
||||
throw new AssertionError("Failed to create sender keys path: " + e.getMessage(), e);
|
||||
}
|
||||
return new File(senderKeysPath,
|
||||
key.recipientId().id() + "_" + key.deviceId() + "_" + key.distributionId.toString());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue