From cfbd6691091a5b548512559d5a136348a3384fce Mon Sep 17 00:00:00 2001 From: Vishesh Handa Date: Mon, 15 Feb 2021 12:10:24 +0100 Subject: [PATCH] Stop logging the GitHub response Security++ --- lib/apis/github.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/apis/github.dart b/lib/apis/github.dart index 7efb9aa5..898e9a50 100644 --- a/lib/apis/github.dart +++ b/lib/apis/github.dart @@ -64,7 +64,7 @@ class GitHub implements GitHost { response.body); throw GitHostException.OAuthFailed; } - Log.d("GithubResponse: " + response.body); + // Log.d("GithubResponse: " + response.body); var map = Uri.splitQueryString(response.body); return map["access_token"] ?? "";