Kane Wang
Kane Wang
❤️🦀❤️
I've noticed that this error happens every time when a song plays to 30 minutes
is this looks like related problem fent/node-feedsub#60
yes.
> > So... How do you realize what the issue template means? > > google translation? may use Crowdin for translating and also the helps from the community
Great idea! will be working on that
歐我好像知道為什麼會這樣了,可以幫我用幼龍看看還會不會這樣嗎 http://preview.app.yeecord.com/invite
I guess its because `stream_lib::download_hls` tries to spawn a task, maybe should make `HlsRequest` create async instead?
My solution is to wrap `HlsRequest` in a new Compose implementation with `should_create_async` set to true: ```rs use async_trait::async_trait; use reqwest::Client; use songbird::input::{AudioStream, AudioStreamError, Compose, HlsRequest, Input}; use symphonia_core::io::MediaSource; pub...
> Oh I see the issue now, if the task gets moved to a thread that does not have a executor in by the mixer it might fail. I am...