diff --git a/package.json b/package.json index 6019529..83015ff 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cath", - "version": "1.4.7", + "version": "1.4.8", "description": "A powerful package that can interact with Cath API", "main": "./dist/index.js", "types": "./dist/index.d.ts", diff --git a/src/CODMClient/codmclient.ts b/src/CODMClient/codmclient.ts index 9c600b3..5c5b36c 100644 --- a/src/CODMClient/codmclient.ts +++ b/src/CODMClient/codmclient.ts @@ -20,7 +20,7 @@ export class CODMClient { */ public async getperk(name: string): Promise { const data = await axios - .get(`${config.api}/api/v1/codm/perks?name=${name}`, { + .get(`${config.api}/api/v1/codm/perk?name=${name}`, { headers: { Authorization: this.key, },