diff --git a/.psysh_config/psysh/psysh_history b/.psysh_config/psysh/psysh_history new file mode 100644 index 000000000..e69de29bb diff --git a/app/Imports/MatchmakingProfileImport.php b/app/Imports/MatchmakingProfileImport.php index f0c9b9c38..6af9eb61f 100644 --- a/app/Imports/MatchmakingProfileImport.php +++ b/app/Imports/MatchmakingProfileImport.php @@ -275,6 +275,10 @@ protected function getRowValue(array $row, array $possibleKeys, $default = null) if (isset($row[$normalizedKey]) && !empty($row[$normalizedKey])) { return $row[$normalizedKey]; } + $compactKey = str_replace('_', '', $normalizedKey); + if (isset($row[$compactKey]) && !empty($row[$compactKey])) { + return $row[$compactKey]; + } } return $default; }