From e7fea1b1384ea1de88e1f71a1e1ec29b6db1b218 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Mon, 27 May 2019 08:15:02 -0400 Subject: [PATCH] services on 2fa report with software tokens only --- jslib | 2 +- src/app/tools/inactive-two-factor-report.component.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/jslib b/jslib index f76702bb..dff634d2 160000 --- a/jslib +++ b/jslib @@ -1 +1 @@ -Subproject commit f76702bb44e7b9b504a74cc1535005aac1a0454a +Subproject commit dff634d25e4f12dd9c9df5e077c9d9ce6f2a2f71 diff --git a/src/app/tools/inactive-two-factor-report.component.ts b/src/app/tools/inactive-two-factor-report.component.ts index 8bb864d0..13e1fd76 100644 --- a/src/app/tools/inactive-two-factor-report.component.ts +++ b/src/app/tools/inactive-two-factor-report.component.ts @@ -87,7 +87,7 @@ export class InactiveTwoFactorReportComponent extends CipherReportComponent impl for (const serviceName in category) { if (category.hasOwnProperty(serviceName)) { const service = category[serviceName]; - if (service.tfa && service.url != null) { + if (service.tfa && service.software && service.url != null) { const hostname = Utils.getHostname(service.url); if (hostname != null) { this.services.set(hostname, service.doc);