From 8899b907255291873b2d8a090b37f46d15efcf24 Mon Sep 17 00:00:00 2001 From: fufesou <13586388+fufesou@users.noreply.github.com> Date: Thu, 31 Jul 2025 00:27:55 +0800 Subject: [PATCH] fix: build (#12483) Signed-off-by: fufesou --- flutter/lib/desktop/pages/desktop_home_page.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flutter/lib/desktop/pages/desktop_home_page.dart b/flutter/lib/desktop/pages/desktop_home_page.dart index b975e9c64..237691159 100644 --- a/flutter/lib/desktop/pages/desktop_home_page.dart +++ b/flutter/lib/desktop/pages/desktop_home_page.dart @@ -434,7 +434,7 @@ class _DesktopHomePageState extends State !isCardClosed && bind.mainUriPrefixSync().contains('rustdesk')) { final isToUpdate = (isWindows || isMacOS) && bind.mainIsInstalled(); - String btnText = isToUpdate ? 'Update' : "Download'; + String btnText = isToUpdate ? 'Update' : 'Download'; GestureTapCallback onPressed = () async { final Uri url = Uri.parse('https://rustdesk.com/download'); await launchUrl(url);