Skip to content

Commit 4225fd7

Browse files
authored
Merge branch 'master' into spotlight-checks
2 parents 26c1e00 + 9a29b2e commit 4225fd7

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

app/Http/Controllers/UsersController.php

+4-3
Original file line numberDiff line numberDiff line change
@@ -1003,12 +1003,13 @@ private function storeUser(array $rawParams)
10031003

10041004
$user = $registration->user();
10051005

1006-
if ($country === null) {
1006+
// report unknown country code but ignore non-country from cloudflare
1007+
if ($countryCode !== null && $country === null && $countryCode !== 'T1') {
10071008
app('sentry')->getClient()->captureMessage(
1008-
'User registered from unknown country: '.$countryCode,
1009+
'User registered from unknown country',
10091010
null,
10101011
(new Scope())
1011-
->setExtra('country', $countryCode)
1012+
->setTag('country', $countryCode)
10121013
->setExtra('ip', $ip)
10131014
->setExtra('user_id', $user->getKey())
10141015
);

app/helpers.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1110,11 +1110,11 @@ function nav_links()
11101110
];
11111111
$links['rankings'] = [
11121112
'rankings.type.performance' => route('rankings', ['mode' => $defaultMode, 'type' => 'performance']),
1113-
'rankings.type.charts' => route('rankings', ['mode' => $defaultMode, 'type' => 'charts']),
11141113
'rankings.type.score' => route('rankings', ['mode' => $defaultMode, 'type' => 'score']),
11151114
'rankings.type.country' => route('rankings', ['mode' => $defaultMode, 'type' => 'country']),
11161115
'rankings.type.multiplayer' => route('multiplayer.rooms.show', ['room' => 'latest']),
11171116
'rankings.type.seasons' => route('seasons.show', ['season' => 'latest']),
1117+
'rankings.type.charts' => route('rankings', ['mode' => $defaultMode, 'type' => 'charts']),
11181118
'layout.menu.rankings.kudosu' => route('rankings.kudosu'),
11191119
];
11201120
$links['community'] = [

resources/lang/en/rankings.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
],
2525

2626
'type' => [
27-
'charts' => 'spotlights',
27+
'charts' => 'spotlights (old)',
2828
'country' => 'country',
2929
'kudosu' => 'kudosu',
3030
'multiplayer' => 'multiplayer',

resources/views/rankings/index.blade.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
];
2525
2626
$links = [];
27-
foreach (['performance', 'charts', 'score', 'country', 'multiplayer', 'seasons', 'kudosu'] as $tab) {
27+
foreach (['performance', 'score', 'country', 'multiplayer', 'seasons', 'charts', 'kudosu'] as $tab) {
2828
$links[] = [
2929
'active' => $tab === $type,
3030
'title' => osu_trans("rankings.type.{$tab}"),

0 commit comments

Comments
 (0)