From f365e83ac2f5957dc0419b63a1d4551fe7b0a1ef Mon Sep 17 00:00:00 2001 From: Sigurd Meldgaard Date: Fri, 15 Sep 2023 10:47:06 +0000 Subject: [PATCH] Add TODO --- lib/src/http.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/src/http.dart b/lib/src/http.dart index 536752561..d05c51296 100644 --- a/lib/src/http.dart +++ b/lib/src/http.dart @@ -229,6 +229,7 @@ void handleGCSError(http.BaseResponse response) { } final code = getTagText('Code'); + // TODO(sigurdm): we could hard-code nice error messages for known codes. final message = getTagText('Message'); // `Details` are not specified in the doc above, but have been observed in actual responses. final details = getTagText('Details');