Browse Source

Increase thread message limit

I've had no issues going as high as 40 messages every few seconds. May make the loading time longer, though. 

I think a slider in the settings to set the thread and thread message limit would be ideal, since I rarely want to load any more than the top 2-3 threads, but it would be better to load more messages in those threads. But on my device, 10 is too low and a lot of time is spent loading old messages.
renovate/org.robolectric-robolectric-4.x
sigaloid 4 years ago
committed by GitHub
parent
commit
a623022934
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      app/src/main/java/awais/instagrabber/webservices/DirectMessagesService.java

2
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) { public Call<DirectInboxResponse> fetchPendingInbox(final String cursor, final long seqId) {
final ImmutableMap.Builder<String, Object> queryMapBuilder = ImmutableMap.<String, Object>builder() final ImmutableMap.Builder<String, Object> queryMapBuilder = ImmutableMap.<String, Object>builder()
.put("visual_message_return_type", "unseen") .put("visual_message_return_type", "unseen")
.put("thread_message_limit", 10)
.put("thread_message_limit", 20)
.put("persistentBadging", true) .put("persistentBadging", true)
.put("limit", 10); .put("limit", 10);
if (!TextUtils.isEmpty(cursor)) { if (!TextUtils.isEmpty(cursor)) {

Loading…
Cancel
Save