We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65fd189 commit ab6c784Copy full SHA for ab6c784
RustApp/src/ui/app.rs
@@ -841,7 +841,8 @@ impl Application for AppState {
841
}
842
843
fn subscription(&self) -> cosmic::iced::Subscription<Self::Message> {
844
- let subscriptions = vec![Subscription::run(|| streamer::sub().map(AppMsg::Streamer))];
+ #[allow(unused_mut)]
845
+ let mut subscriptions = vec![Subscription::run(|| streamer::sub().map(AppMsg::Streamer))];
846
847
#[cfg(not(target_os = "linux"))]
848
if let Some(system_tray_stream) = &self.system_tray_stream {
0 commit comments