SlackAPI: Do not check for is_primary_owner
This commit is contained in:
parent
8d10818b9b
commit
fb5ef23e10
1 changed files with 2 additions and 2 deletions
|
@ -321,8 +321,8 @@ void SlackAPI::getSlackUserInfo(HTTPRequest *req, bool ok, rapidjson::Document &
|
|||
STORE_STRING(users[i], name);
|
||||
info.name = name;
|
||||
|
||||
STORE_BOOL(users[i], is_primary_owner);
|
||||
info.isPrimaryOwner = is_primary_owner;
|
||||
// STORE_BOOL(users[i], is_primary_owner);
|
||||
info.isPrimaryOwner = false;
|
||||
|
||||
ret[info.id] = info;
|
||||
LOG4CXX_INFO(logger, info.id << " " << info.name);
|
||||
|
|
Loading…
Add table
Reference in a new issue