diff options
m--------- | depends/odhtdb | 0 | ||||
-rw-r--r-- | src/main.cpp | 4 |
2 files changed, 2 insertions, 2 deletions
diff --git a/depends/odhtdb b/depends/odhtdb -Subproject 82b551fad6712461bfaaa67ade44aa6091c9cf8 +Subproject c8f015c546d095857fde0f5fbef95156ce99369 diff --git a/src/main.cpp b/src/main.cpp index 56c38a6..f8820f3 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -396,13 +396,13 @@ int main(int argc, char **argv) serializer.add((const u8*)encryptedChannelKey.getCipherText().data, encryptedChannelKey.getCipherText().size); const auto &localUserPublicKey = static_cast<OnlineLocalUser*>(currentChannel->getLocalUser())->getPublicKey(); auto localUserGroups = database->getUserGroups(*currentChannel->getNodeInfo().getRequestHash(), localUserPublicKey); - if(!localUserGroups.empty()) + if(localUserGroups.empty()) { fprintf(stderr, "No group to add user to...\n"); return sibs::SafeSerializer(); } lock_guard<recursive_mutex> lock(channelMessageMutex); - currentChannel->addUser(localUserPublicKey, localUserGroups[0].getView()); + currentChannel->addUser(userToAddPublicKey, localUserGroups[0].getView()); return serializer; } catch(std::exception &e) |