Erik Živković
Erik Živković
Technically I only need to add the Swift files to the project, so just having that would be a nice addition. But all the other suggestions are nice as well,...
Changing the return type doesn't help either: ```typescript client.webSocketFactory = (): IStompSocket => { return new WebSocket(myBrokerUrl); }; ``` ``` TS2322: Type 'WebSocket' is not assignable to type 'IStompSocket'. Types...
This works, but feels a bit icky: ```typescript client.webSocketFactory = (): IStompSocket => { return new WebSocket(myBrokerUrl) as IStompSocket; }; ``` I would rather not cast with `as` if I...
Thank you for your help. Is there no room for lenient parsing? What if new attributes are added to the HLS spec, will those playlists be rejected too, even if...
Happy new year! Any thoughts on this issue @vagetman @rutgersc ? Thanks 🙏
I am stuck on `v3.0.0` until this issue is resolved. Unfortunately I just discovered that `v3.0.0` has a bug that makes it hang forever if the `m3u8_rs::parse_playlist` function gets an...
@vagetman Hi! My thinking is that there are a lot of playlists out there that are plain _wrong_ and it might be any attribute, not just FORCED. My dream would...
My original claim is that an audio playlist that has `FORCED=NO` on it ends up in `unknown_tags` which makes it much harder to work with.
Hello everyone, I was wondering if any progress was made on this issue? Thanks 🤗
Curiously, there is also a third mitigation: # Mitigation ## Compile the wasm-library with `codegen-units = 1` When compiling in release mode, the bug does not appear, which made me...