mirror of
https://github.com/AsamK/signal-cli
synced 2025-08-29 02:20:39 +00:00
parent
40fc712581
commit
3ed776e4cc
2 changed files with 4 additions and 2 deletions
|
@ -64,7 +64,9 @@ public class AvatarStore {
|
|||
}
|
||||
|
||||
private void deleteAvatar(final File avatarFile) throws IOException {
|
||||
Files.delete(avatarFile.toPath());
|
||||
if (avatarFile.exists()) {
|
||||
Files.delete(avatarFile.toPath());
|
||||
}
|
||||
}
|
||||
|
||||
private File getGroupAvatarFile(GroupId groupId) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue