1
0
mirror of https://github.com/bitwarden/web synced 2025-12-06 00:03:28 +00: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

View File

@@ -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);