From 0b2ecd0626ddb5cfec2b7d121bce834ab8478e4f Mon Sep 17 00:00:00 2001 From: Pierre Date: Sun, 28 Jan 2018 21:01:58 +0100 Subject: [PATCH] Delayed conversation refresh interval. --- .../data/conversations/ConversationRefreshRunnable.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/java/org/communiquons/android/comunic/client/data/conversations/ConversationRefreshRunnable.java b/app/src/main/java/org/communiquons/android/comunic/client/data/conversations/ConversationRefreshRunnable.java index ae5281d..40c5a28 100644 --- a/app/src/main/java/org/communiquons/android/comunic/client/data/conversations/ConversationRefreshRunnable.java +++ b/app/src/main/java/org/communiquons/android/comunic/client/data/conversations/ConversationRefreshRunnable.java @@ -190,9 +190,9 @@ public class ConversationRefreshRunnable implements Runnable { }); } - //Make a small break + //Make a small break (1 sec 200) try { - object.wait(500); + object.wait(1200); } catch (InterruptedException e) { e.printStackTrace(); break;