services on 2fa report with software tokens only
This commit is contained in:
parent
b24d7df789
commit
e7fea1b138
2
jslib
2
jslib
|
@ -1 +1 @@
|
||||||
Subproject commit f76702bb44e7b9b504a74cc1535005aac1a0454a
|
Subproject commit dff634d25e4f12dd9c9df5e077c9d9ce6f2a2f71
|
|
@ -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);
|
||||||
|
|
Loading…
Reference in New Issue