vk-java-sdk icon indicating copy to clipboard operation
vk-java-sdk copied to clipboard

Конструктор класса GroupsGetLongPollSettingsQuery два раза добавляет в запрос groupId

Open aleekseei opened this issue 3 years ago • 0 comments

public GroupsGetLongPollSettingsQuery(VkApiClient client, GroupActor actor, int groupId) {
        super(client, "groups.getLongPollSettings", GetLongPollSettingsResponse.class);
        accessToken(actor.getAccessToken());
        groupId(actor.getGroupId());
        groupId(groupId);
    }

А надо один.

aleekseei avatar Apr 17 '22 20:04 aleekseei