There was an error while loading. Please reload this page.
1 parent af8e26c commit fdf1ddcCopy full SHA for fdf1ddc
Source/library/src/main/java/im/delight/android/ddp/Meteor.java
@@ -1241,7 +1241,8 @@ private void announceSessionReady(final boolean signedInAutomatically) {
1241
mCallbackProxy.onConnect(signedInAutomatically);
1242
1243
// try to dispatch queued messages now
1244
-for (String queuedMessage : mQueuedMessages) {
+String queuedMessage = null;
1245
+while ((queuedMessage = mQueuedMessages.poll()) != null) {
1246
send(queuedMessage);
1247
}
1248
0 commit comments