diff --git a/src/CCashClient.ts b/src/CCashClient.ts index e7319f5..43dc9d8 100644 --- a/src/CCashClient.ts +++ b/src/CCashClient.ts @@ -96,7 +96,7 @@ export class CCashClient implements ICCashClient { adminVerifyPass(pass: string): Promise { return this.http - .get('/admin/verify') + .get('/admin/verify', { headers: { Password: pass } }) .then( (response) => this.handleError(response) || response.data.value || false );