Commit 1921ce2c authored by Yusuke Iwaki's avatar Yusuke Iwaki Committed by GitHub

Merge branch 'develop' into feature/attachment-improvement

parents 6f5d0e5a d1bcc7c5
......@@ -134,6 +134,8 @@ public class DDPClientImpl {
}));
addErrorCallback(subscriptions, task);
} else {
task.trySetError(new DDPClientCallback.Closed(client));
}
}
......@@ -174,6 +176,8 @@ public class DDPClientImpl {
}));
addErrorCallback(subscriptions, task);
} else {
task.trySetError(new DDPClientCallback.Closed(client));
}
}
......@@ -202,6 +206,8 @@ public class DDPClientImpl {
}));
addErrorCallback(subscriptions, task);
} else {
task.trySetError(new DDPClientCallback.Closed(client));
}
}
......@@ -241,6 +247,8 @@ public class DDPClientImpl {
}));
addErrorCallback(subscriptions, task);
} else {
task.trySetError(new DDPClientCallback.Closed(client));
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment