mirror of
https://github.com/aljazceru/signal-cli.git
synced 2025-12-27 11:04:24 +01:00
Add error message when creating sende keys path fails
This commit is contained in:
@@ -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());
|
||||
|
||||
Reference in New Issue
Block a user