On Tue Mar 12 13:40:49 2024 +0000, Yuxuan Shui wrote:
I spotted the problem. In `init_stream`:
stream->wg_stream = wg_parser_get_stream(reader->wg_parser, reader->stream_count - i - 1);
vs `reinit_stream`:
stream->wg_stream = wg_parser_get_stream(reader->wg_parser, i);
Though indeed the order of the streams is not guaranteed to stay the same (as per @rbernon)
(Sorry forgot to mention this is proton only)