From eb7ad40e9fc089d3ec692a5292974cc805a1e688 Mon Sep 17 00:00:00 2001 From: bernardhanna Date: Tue, 27 Jan 2026 16:21:34 +0000 Subject: [PATCH] matchmalking bulk --- .psysh_config/psysh/psysh_history | 0 app/Imports/MatchmakingProfileImport.php | 4 ++++ 2 files changed, 4 insertions(+) create mode 100644 .psysh_config/psysh/psysh_history 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; }