mirror of
https://github.com/twisterarmy/twister-core.git
synced 2025-01-10 23:07:52 +00:00
enables readding a group key by
This commit is contained in:
parent
d214994b12
commit
baf5be5c13
@ -1206,7 +1206,7 @@ string getGroupAliasByKey(const string &privKey)
|
||||
void registerNewGroup(const string &privKey, const string &desc, const string &member, const string &invitedBy, int64_t utcTime, int k)
|
||||
{
|
||||
string groupAlias = getGroupAliasByKey(privKey);
|
||||
if( !groupAlias.length() ) {
|
||||
|
||||
CBitcoinSecret vchSecret;
|
||||
bool fGood = vchSecret.SetString(privKey);
|
||||
if (!fGood) {
|
||||
@ -1225,7 +1225,7 @@ void registerNewGroup(const string &privKey, const string &desc, const string &m
|
||||
printf("registerGroupMember: Invalid group alias '%s' from wallet\n", groupAlias.c_str());
|
||||
return;
|
||||
}
|
||||
} else {
|
||||
} else if (!groupAlias.length()) {
|
||||
groupAlias = getRandomGroupAlias();
|
||||
}
|
||||
|
||||
@ -1235,7 +1235,6 @@ void registerNewGroup(const string &privKey, const string &desc, const string &m
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
LOCK(cs_twister);
|
||||
GroupChat &group = m_groups[groupAlias];
|
||||
|
Loading…
Reference in New Issue
Block a user