From c9aa273b97c6450ccaf68732d9f7ca6b32931d64 Mon Sep 17 00:00:00 2001 From: Lucas Caton Date: Wed, 9 Nov 2022 11:07:17 +1000 Subject: [PATCH] Remove TODO comment --- lib/octokit/connection.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/octokit/connection.rb b/lib/octokit/connection.rb index b18998ae8..1ee5c2019 100644 --- a/lib/octokit/connection.rb +++ b/lib/octokit/connection.rb @@ -208,7 +208,6 @@ def parse_query_and_convenience_headers(options) end def response_data_correctly_encoded(response) - # TODO: I'm guessing base64 content responses are still broken, but this fixes the bug we're running into content_type = response.headers.fetch('content-type', '') return response.data unless content_type.include?('charset') && response.data.is_a?(String)