You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: components/brave_rewards/resources/extension/brave_rewards/_locales/en_US/messages.json
+18
Original file line number
Diff line number
Diff line change
@@ -219,6 +219,24 @@
219
219
"message": "Please backup your Brave wallet.",
220
220
"description": "Description for backup wallet notification"
221
221
},
222
+
"mismatchedProviderAccountsLearnMore": {
223
+
"message": "Learn More",
224
+
"description": "Notification button text to learn more about linking with a custodian account"
225
+
},
226
+
"mismatchedProviderAccountsTitle": {
227
+
"message": "Error: Different account",
228
+
"description": "Title for mismatched provider accounts notification"
229
+
},
230
+
"mismatchedProviderAccountsNotification": {
231
+
"message": "Hmm, it looks like your Brave Rewards wallet has already been verified with another $name$ account. Please try verifying again using your previous account.",
232
+
"description": "Description for mismatched provider accounts notification",
233
+
"placeholders": {
234
+
"name": {
235
+
"content": "$1",
236
+
"example": "Uphold"
237
+
}
238
+
}
239
+
},
222
240
"upholdBATNotAllowedForUserLearnMore": {
223
241
"message": "Learn More",
224
242
"description": "Notification button text to learn more about why BAT is not allowed for user"
Copy file name to clipboardExpand all lines: vendor/bat-native-ledger/src/bat/ledger/internal/endpoint/promotion/post_claim_uphold/post_claim_uphold.cc
+2-2
Original file line number
Diff line number
Diff line change
@@ -121,7 +121,7 @@ type::Result PostClaimUphold::CheckStatusCode(const int status_code) const {
121
121
122
122
if (status_code == net::HTTP_FORBIDDEN) {
123
123
BLOG(0, "Forbidden");
124
-
return type::Result::LEDGER_ERROR;
124
+
return type::Result::TOO_MANY_RESULTS;
125
125
}
126
126
127
127
if (status_code == net::HTTP_NOT_FOUND) {
@@ -130,7 +130,7 @@ type::Result PostClaimUphold::CheckStatusCode(const int status_code) const {
Copy file name to clipboardExpand all lines: vendor/bat-native-ledger/src/bat/ledger/internal/endpoint/promotion/post_claim_uphold/post_claim_uphold_unittest.cc
0 commit comments