diff --git a/tcgdex.ts b/tcgdex.ts index ed24a3c..5bc4379 100644 --- a/tcgdex.ts +++ b/tcgdex.ts @@ -53,12 +53,12 @@ export default class TCGdex { } public async getSerie(expansion: string): Promise { - const req = this.rwgr(`/expansions/${expansion}/`) + const req = this.rwgr(`/series/${expansion}/`) return req.get() } public async getSeries(): Promise { - const req = this.rwgr(`/expansions/`) + const req = this.rwgr(`/series/`) return req.get() }