use correct case for import

use lower case `v` instead of upper case `V`
This commit is contained in:
Michael (Parker) Parker 2024-11-09 13:53:50 -05:00
parent 47bd7289b1
commit b85b17f080
No known key found for this signature in database
GPG Key ID: 919933DD2DE2549F

View File

@ -115,7 +115,7 @@ class EggImporterService
$parsed = match ($version) {
'PTDL_v1' => $this->convertToV2($parsed),
'PTDL_v2' => $parsed,
'PLCN_V1' => $parsed,
'PLCN_v1' => $parsed,
default => throw new InvalidFileUploadException('The JSON file provided is not in a format that can be recognized.')
};