From 1526137a64c01125fb6f4e1e791912a2826626ec Mon Sep 17 00:00:00 2001 From: dom Date: Tue, 7 Apr 2026 16:24:02 +0800 Subject: [PATCH] fix AppSign Signed-off-by: dom --- lib/utils/app_sign.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/utils/app_sign.dart b/lib/utils/app_sign.dart index e644a8c22..9a3162389 100644 --- a/lib/utils/app_sign.dart +++ b/lib/utils/app_sign.dart @@ -35,11 +35,11 @@ abstract final class AppSign { assert(value != null, 'remove null value'); result.write(separator); separator = '&'; - result.write(Uri.encodeQueryComponent(key)); + result.write(Uri.encodeComponent(key)); if (value != null && value.isNotEmpty) { result ..write('=') - ..write(Uri.encodeQueryComponent(value)); + ..write(Uri.encodeComponent(value)); } }