Browse Source
Merge pull request #700 from sigaloid/patch-1
Increase thread message limit
renovate/org.robolectric-robolectric-4.x
Austin Huang
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
app/src/main/java/awais/instagrabber/webservices/DirectMessagesService.java
|
|
@ -413,7 +413,7 @@ public class DirectMessagesService extends BaseService { |
|
|
|
public Call<DirectInboxResponse> fetchPendingInbox(final String cursor, final long seqId) { |
|
|
|
final ImmutableMap.Builder<String, Object> queryMapBuilder = ImmutableMap.<String, Object>builder() |
|
|
|
.put("visual_message_return_type", "unseen") |
|
|
|
.put("thread_message_limit", 10) |
|
|
|
.put("thread_message_limit", 20) |
|
|
|
.put("persistentBadging", true) |
|
|
|
.put("limit", 10); |
|
|
|
if (!TextUtils.isEmpty(cursor)) { |
|
|
|