Ran prettier and commented out VNDBAPI that I forgot to remove

Just in case I forget: ` bun prettier . --write`
This commit is contained in:
ltctceplrm 2025-02-12 00:31:57 +01:00
parent d89d8be189
commit 540a772e6d
5 changed files with 37 additions and 40 deletions

View file

@ -62,12 +62,11 @@ export class PropertyMapper {
return obj;
}
if (obj.type === "manga") {
obj.type = "comicManga";
if (obj.type === 'manga') {
obj.type = 'comicManga';
console.debug(`MDB | updated metadata type`, obj.type);
}
if (MEDIA_TYPES.contains(obj.type as any)) {
if (MEDIA_TYPES.contains(obj.type as any)) {
return obj;
}