mirror of
https://github.com/AsamK/signal-cli
synced 2025-08-29 10:30:38 +00:00
parent
656ca6b5e4
commit
537b704951
1 changed files with 5 additions and 1 deletions
|
@ -184,7 +184,11 @@ public class RegistrationManager implements Closeable {
|
|||
|
||||
m.refreshPreKeys();
|
||||
// Set an initial empty profile so user can be added to groups
|
||||
m.setProfile(null, null, null, null, null);
|
||||
try {
|
||||
m.setProfile(null, null, null, null, null);
|
||||
} catch (NoClassDefFoundError e) {
|
||||
logger.warn("Failed to set default profile: {}", e.getMessage());
|
||||
}
|
||||
if (response.isStorageCapable()) {
|
||||
m.retrieveRemoteStorage();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue