From 734787c7b4c9a250a9b1795c6dbde718ca1a5ac5 Mon Sep 17 00:00:00 2001 From: Henry-Hiles Date: Sat, 26 Jul 2025 22:41:33 -0400 Subject: [PATCH] passthru all headers --- bin/main.dart | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/bin/main.dart b/bin/main.dart index b98cdf7..ebb2694 100644 --- a/bin/main.dart +++ b/bin/main.dart @@ -26,10 +26,7 @@ void main(List argsRaw) async { ) async { final authResponse = await http.get( settings.authUri, - headers: { - if (request.headers['cookie'] != null) - 'cookie': request.headers['cookie']!, - }, + headers: request.headers, ); if (authResponse.statusCode != 200) {