fix: Fixed tests
feat: Added RClone integration feat: Implemented plugin settings feat: Updated minimal store version test: Fixed tests feat: Moved store and igdb and es-de to their own plugins
This commit is contained in:
parent
444d8c4c27
commit
c09fbd3dc8
115 changed files with 4139 additions and 1502 deletions
|
|
@ -96,12 +96,18 @@ await Promise.all(platforms.map(async ([platform, arch]) =>
|
|||
});
|
||||
|
||||
const rommMapping = rommPlatforms.data?.find(p =>
|
||||
p.slug === (customMappings as any)[name] ||
|
||||
p.slug === name ||
|
||||
p.igdb_slug === name ||
|
||||
p.hltb_slug === name ||
|
||||
p.moby_slug === name ||
|
||||
p.display_name === fullname
|
||||
{
|
||||
const custom = (customMappings as any)[name];
|
||||
if (Array.isArray(custom) && custom.some(m => m === p.slug))
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
return p.slug === custom ||
|
||||
p.slug === name ||
|
||||
p.igdb_slug === name ||
|
||||
p.display_name === fullname;
|
||||
}
|
||||
);
|
||||
|
||||
const mappings: {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue