1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59:18 +00:00

Fix: duplication bug (#136)

Signed-off-by: Avior <github@avior.me>
This commit is contained in:
2021-11-04 12:21:54 +01:00
committed by GitHub
parent 7de5764409
commit 80ec53a57d
2 changed files with 0 additions and 2 deletions

View File

@ -20,7 +20,6 @@ export default class implements Endpoint<SerieList, SerieSingle, Record<string,
for await (const val of common) {
const gen = await serieToSerieSingle(val, this.lang)
const name = val.name[this.lang] as string
items[name] = gen
items[val.id] = gen
}
return items