This commit is contained in:
AsamK 2015-12-12 20:05:44 +01:00
parent 80cc0cad92
commit 845e93ec0f

View file

@ -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;
}
} }