We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e71248f + e5f07c2 commit 40bbb34Copy full SHA for 40bbb34
lib/src/main/java/ua/naiksoftware/stomp/StompClient.java
@@ -143,6 +143,8 @@ public void connect(@Nullable List<StompHeader> _headers) {
143
.filter(msg -> msg.getStompCommand().equals(StompCommand.CONNECTED))
144
.subscribe(stompMessage -> {
145
getConnectionStream().onNext(true);
146
+ }, onError -> {
147
+ Log.e(TAG, "Error parsing message", onError);
148
});
149
}
150
0 commit comments