mirror of
https://github.com/AsamK/signal-cli
synced 2025-08-29 18:40:39 +00:00
Cleanup
This commit is contained in:
parent
80cc0cad92
commit
845e93ec0f
1 changed files with 4 additions and 8 deletions
|
@ -305,7 +305,7 @@ class Manager {
|
||||||
if (groupId == null) {
|
if (groupId == null) {
|
||||||
// Create new group
|
// Create new group
|
||||||
g = new GroupInfo(Util.getSecretBytes(16));
|
g = new GroupInfo(Util.getSecretBytes(16));
|
||||||
g.members.add(getUsername());
|
g.members.add(username);
|
||||||
} else {
|
} else {
|
||||||
g = getGroupInfo(groupId);
|
g = getGroupInfo(groupId);
|
||||||
}
|
}
|
||||||
|
@ -564,7 +564,7 @@ class Manager {
|
||||||
return outputFile;
|
return outputFile;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String canonicalizeNumber(String number) throws InvalidNumberException {
|
private String canonicalizeNumber(String number) throws InvalidNumberException {
|
||||||
String localNumber = username;
|
String localNumber = username;
|
||||||
return PhoneNumberFormatter.formatNumber(number, localNumber);
|
return PhoneNumberFormatter.formatNumber(number, localNumber);
|
||||||
}
|
}
|
||||||
|
@ -574,15 +574,11 @@ class Manager {
|
||||||
return new TextSecureAddress(e164number);
|
return new TextSecureAddress(e164number);
|
||||||
}
|
}
|
||||||
|
|
||||||
public GroupInfo getGroupInfo(byte[] groupId) throws GroupNotFoundException {
|
private GroupInfo getGroupInfo(byte[] groupId) throws GroupNotFoundException {
|
||||||
return groupStore.getGroup(groupId);
|
return groupStore.getGroup(groupId);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setGroupInfo(GroupInfo group) {
|
private void setGroupInfo(GroupInfo group) {
|
||||||
groupStore.updateGroup(group);
|
groupStore.updateGroup(group);
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getUsername() {
|
|
||||||
return username;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue