joshuajwitter

Results 7 comments of joshuajwitter

@codedentwickler I am still seeing a large number of crashes even after trying to fix this error myself. This is what the stack traces for the exceptions look like: ```...

I am still scratching my head, I wish there was a working code example for using the `subscribe()` method. Reading the other issues on this project leads me to posts...

A bit more information from https://github.com/ReactiveX/RxJava/wiki/Error-Handling: OnErrorNotImplementedException This indicates that an Observable tried to call its observer’s onError() method, but that no such method existed. You can eliminate this by...

Alright, I think I may have discovered what was going on. I believe I was focusing my efforts on the wrong code. I was looking into where my client was...

Yeah, it looks like my changes didn't fix the error. I am still seeing the same crashes.

@codedentwickler could you elaborate? > It works after I added this line. > > ``` > stompClient.setPathMatcher(ActivePathMatcher()); > ``` > > I had to make some changes to the library...

> It works after I added this line. > > ``` > stompClient.setPathMatcher(ActivePathMatcher()); > ``` > > I had to make some changes to the library locally :trollface: