mirror of
https://github.com/Kir-Antipov/mc-publish.git
synced 2024-11-21 16:00:59 -05:00
Fixed typo causing exceptions on unknown loaders
This commit is contained in:
parent
156eade8c0
commit
84db9b85e2
1 changed files with 1 additions and 1 deletions
|
@ -151,7 +151,7 @@ export class ModrinthUploader extends GenericPlatformUploader<ModrinthUploaderOp
|
|||
const modrinthLoaders = await api.getLoaders();
|
||||
return $i(loaders)
|
||||
.map(x => modrinthLoaders.find(y => IGNORE_CASE_AND_NON_WORD_CHARACTERS_EQUALITY_COMPARER(x, y.name)))
|
||||
.filter(x => x.supported_project_types?.includes(project.project_type))
|
||||
.filter(x => x?.supported_project_types.includes(project.project_type))
|
||||
.map(x => x.name)
|
||||
.toArray();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue