diff --git a/rust/src/updater.rs b/rust/src/updater.rs index d2e50d2f9f..a5b740aba3 100755 --- a/rust/src/updater.rs +++ b/rust/src/updater.rs @@ -7,7 +7,7 @@ use std::path::{Path, PathBuf}; use std::sync::Arc; use tokio::sync::watch; -const GITHUB_REPO: &str = "Finesssee/Win-CodexBar"; +const GITHUB_REPO: &str = "nesszer/Win-CodexBar"; const CURRENT_VERSION: &str = env!("CARGO_PKG_VERSION"); /// State of the update download process @@ -720,7 +720,7 @@ mod tests { fn prefers_installer_asset_for_auto_update() { let release = GitHubRelease { tag_name: "v1.2.6".to_string(), - html_url: "https://github.com/Finesssee/Win-CodexBar/releases/tag/v1.2.6".to_string(), + html_url: "https://github.com/nesszer/Win-CodexBar/releases/tag/v1.2.6".to_string(), body: None, assets: vec![ GitHubAsset { @@ -756,7 +756,7 @@ mod tests { fn falls_back_to_manual_release_when_only_portable_exe_exists() { let release = GitHubRelease { tag_name: "v1.2.6".to_string(), - html_url: "https://github.com/Finesssee/Win-CodexBar/releases/tag/v1.2.6".to_string(), + html_url: "https://github.com/nesszer/Win-CodexBar/releases/tag/v1.2.6".to_string(), body: None, assets: vec![GitHubAsset { name: "codexbar.exe".to_string(), @@ -771,7 +771,7 @@ mod tests { assert_eq!( update.download_url, - "https://github.com/Finesssee/Win-CodexBar/releases/tag/v1.2.6" + "https://github.com/nesszer/Win-CodexBar/releases/tag/v1.2.6" ); assert!(!update.supports_auto_apply()); }