From 41a7df5cfb7f64a24c1a9a5793cfd0783325fb87 Mon Sep 17 00:00:00 2001 From: Julien <120588494+julien4215@users.noreply.github.com> Date: Wed, 14 May 2025 14:24:30 +0200 Subject: [PATCH] Show query parameters in http log when using kLichessHost --- lib/src/view/settings/http_log_screen.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/view/settings/http_log_screen.dart b/lib/src/view/settings/http_log_screen.dart index c8876782df..1ce168c35b 100644 --- a/lib/src/view/settings/http_log_screen.dart +++ b/lib/src/view/settings/http_log_screen.dart @@ -176,7 +176,7 @@ class HttpLogTile extends StatelessWidget { ), title: Text( httpLog.requestUrl.host == kLichessHost - ? httpLog.requestUrl.path + ? Uri(path: httpLog.requestUrl.path, query: httpLog.requestUrl.query).toString() : httpLog.requestUrl.toString(), maxLines: 2, overflow: TextOverflow.ellipsis,