1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-06 05:28:51 +02:00

services on 2fa report with software tokens only

This commit is contained in:
Kyle Spearrin 2019-05-27 08:15:02 -04:00
parent b24d7df789
commit e7fea1b138
2 changed files with 2 additions and 2 deletions

2
jslib

@ -1 +1 @@
Subproject commit f76702bb44e7b9b504a74cc1535005aac1a0454a Subproject commit dff634d25e4f12dd9c9df5e077c9d9ce6f2a2f71

View File

@ -87,7 +87,7 @@ export class InactiveTwoFactorReportComponent extends CipherReportComponent impl
for (const serviceName in category) { for (const serviceName in category) {
if (category.hasOwnProperty(serviceName)) { if (category.hasOwnProperty(serviceName)) {
const service = category[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); const hostname = Utils.getHostname(service.url);
if (hostname != null) { if (hostname != null) {
this.services.set(hostname, service.doc); this.services.set(hostname, service.doc);