From 5a2038003b099db6030b6e8476c8c6c19ad27bde Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Sun, 25 Jan 2026 08:51:34 +0000 Subject: [PATCH] fix: only show changelog after update, not on first install Co-Authored-By: john@hyprnote.com --- plugins/updater2/src/ext.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/updater2/src/ext.rs b/plugins/updater2/src/ext.rs index f7187bab27..2aa42451d9 100644 --- a/plugins/updater2/src/ext.rs +++ b/plugins/updater2/src/ext.rs @@ -38,7 +38,7 @@ impl<'a, R: tauri::Runtime, M: tauri::Manager> Updater2<'a, R, M> { Ok(Some(last_version)) if !last_version.is_empty() => { (last_version != current_version, Some(last_version)) } - Ok(_) => (true, None), + Ok(_) => (false, None), Err(e) => { tracing::error!("failed_to_get_last_seen_version: {}", e); (false, None)