From 650ab56353dc263da6522e3a96dc846af43635a8 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Thu, 7 Mar 2019 23:54:52 -0500 Subject: [PATCH] fix enabled --- src/models/response/twoFactorYubiKeyResponse.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/models/response/twoFactorYubiKeyResponse.ts b/src/models/response/twoFactorYubiKeyResponse.ts index c717210141..92d8cffb30 100644 --- a/src/models/response/twoFactorYubiKeyResponse.ts +++ b/src/models/response/twoFactorYubiKeyResponse.ts @@ -11,7 +11,7 @@ export class TwoFactorYubiKeyResponse extends BaseResponse { constructor(response: any) { super(response); - this.enabled = this.getResponseProperty('Enable'); + this.enabled = this.getResponseProperty('Enabled'); this.key1 = this.getResponseProperty('Key1'); this.key2 = this.getResponseProperty('Key2'); this.key3 = this.getResponseProperty('Key3');