Skip to content
This repository was archived by the owner on Apr 9, 2019. It is now read-only.
This repository was archived by the owner on Apr 9, 2019. It is now read-only.

group.getUsers function always return 0 #40

Description

@QuantumPixelForge

Hi,

I think code will explain everything.

Skype skype = new Skype("bot", "xxx");
skype.connect();
System.out.println("Bot is connected");
List groups = skype.getGroups();
// I have 2 groups
System.out.println(groups.size());
for (Group group : groups) {
List<Pair<User, Role>> usersWithRoles = group.getUsersWithRoles();
System.out.println(usersWithRoles.size());
List users = group.getUsers();
System.out.println(users.size());
}
System.out.println("Bot is disconnected");

output is:
Bot is connected
2
0
0
0
0
Bot is disconnected

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

Projects

No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions