Delayed conversation refresh interval.

This commit is contained in:
Pierre 2018-01-28 21:01:58 +01:00
parent 5d7efdc8d5
commit 0b2ecd0626

View File

@ -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;