Skip to content

Commit

Permalink
Fix websocket bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
mkrueger committed Dec 23, 2024
1 parent 79a0286 commit 96a64aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/icy_term/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "icy_term"
version = "0.7.9"
version = "0.7.10"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/icy_term/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ fn main() {
}

log::info!("Starting iCY TERM {}", *VERSION);

icy_net::websocket::init_websocket_providers();
if let Err(err) = eframe::run_native(&DEFAULT_TITLE, native_options, Box::new(|cc| Ok(Box::new(MainWindow::new(cc, options))))) {
log::error!("Error returned by run_native: {}", err);
}
Expand Down

0 comments on commit 96a64aa

Please sign in to comment.