fix: 🚑 Hyprland crash for streamer program fixed with dependency update
This commit is contained in:
parent
c71635f8ce
commit
c46a9dc834
2 changed files with 3 additions and 3 deletions
|
@ -19,8 +19,8 @@ unsafe_code = "forbid"
|
||||||
[dependencies]
|
[dependencies]
|
||||||
brotli = "5.0.0"
|
brotli = "5.0.0"
|
||||||
cpal = "0.15.3"
|
cpal = "0.15.3"
|
||||||
futures-util = { version = "0.3.30", features = ["futures-sink", "sink"] }
|
futures-util = { version = "0.3.31", features = ["futures-sink", "sink"] }
|
||||||
iced = { git = "https://github.com/iced-rs/iced", features = ["tokio"], rev = "dcdf1307006883f50083c186ca7b8656bfa60873"}
|
iced = { git = "https://github.com/iced-rs/iced", features = ["tokio"], rev = "42a2cb6d4f78343f43d6a68a28e5502d9426ed2c"}
|
||||||
ringbuf = "0.3.3"
|
ringbuf = "0.3.3"
|
||||||
rubato = "0.15.0"
|
rubato = "0.15.0"
|
||||||
rustls-pemfile = "2.1.2"
|
rustls-pemfile = "2.1.2"
|
||||||
|
|
|
@ -536,7 +536,7 @@ impl Streamer {
|
||||||
iced::Event::Window(windows_event) => Task::perform(
|
iced::Event::Window(windows_event) => Task::perform(
|
||||||
{
|
{
|
||||||
if let window::Event::CloseRequested = windows_event {
|
if let window::Event::CloseRequested = windows_event {
|
||||||
self.exit();
|
let _ = self.exit();
|
||||||
}
|
}
|
||||||
async move {
|
async move {
|
||||||
let files = gui_utils::list_files(Path::new(AUDIO_PATH)).await;
|
let files = gui_utils::list_files(Path::new(AUDIO_PATH)).await;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue