Pagination problem when using metadata_order_key

[Problem/Question]
// Detailed description of issue.
When using list-group-channel API with parameters ‘order’ and ‘metadata_order_key’, pagination does not seem to work properly.
With those parameter and token, api return empty channels. If ‘order’ and ‘metadata_order_key’ parameters are excluded, it works as expected when call with token.


// If problem, please fill out the below. If question, please delete.
[SDK Version]
// What version of the SDK are you using?
v3

[Reproduction Steps]
// Please provide reproduction steps and, if possible, code snippets.
Compare results when list group channel with two parameters below

    token
    limit: 100,
    show_member: true,
    show_metadata: true,
    metacounter_key: 'last_action_timestamp',
    metacounter_value_lt: `${weekagoEpoch}`,
    metadata_order_key: 'last_action_timestamp',
    order: 'metadata_value_alphabetical',

vs

    token
    limit: 100,
    show_member: true,
    show_metadata: true,
    metacounter_key: 'last_action_timestamp',
    metacounter_value_lt: `${weekagoEpoch}`,

[Frequency]
// How frequently is this issue occurring?
Always

[Current impact]
// How is this currently impacting your implementation?
Can access only first page of list-group-channel