Skip to content

Commit 590fb9a

Browse files
committed
Do not log request details for rewards external wallet session endpoints
1 parent 2119204 commit 590fb9a

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

vendor/bat-native-ledger/src/bat/ledger/internal/endpoint/bitflyer/post_oauth/post_oauth_bitflyer.cc

+1
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,7 @@ void PostOauth::Request(const std::string& external_account_id,
127127
request->headers = RequestAuthorization();
128128
request->content_type = "application/json";
129129
request->method = type::UrlMethod::POST;
130+
request->skip_log = true;
130131
ledger_->LoadURL(std::move(request), url_callback);
131132
}
132133

vendor/bat-native-ledger/src/bat/ledger/internal/endpoint/uphold/post_oauth/post_oauth.cc

+1
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ void PostOauth::Request(
9292
request->headers = RequestAuthorization();
9393
request->content_type = "application/x-www-form-urlencoded";
9494
request->method = type::UrlMethod::POST;
95+
request->skip_log = true;
9596
ledger_->LoadURL(std::move(request), url_callback);
9697
}
9798

0 commit comments

Comments
 (0)