1
0
mirror of https://github.com/bitwarden/web synced 2025-12-06 00:03:28 +00:00

fix twofactorauth.org API path. resolves #422

This commit is contained in:
Kyle Spearrin
2019-10-29 08:04:09 -04:00
parent b9f8cad578
commit 94edc1e284
2 changed files with 2 additions and 2 deletions

2
jslib

Submodule jslib updated: b3d1e9d233...57e49207e9

View File

@@ -76,7 +76,7 @@ export class InactiveTwoFactorReportComponent extends CipherReportComponent impl
if (this.services.size > 0) {
return;
}
const response = await fetch(new Request('https://twofactorauth.org/data.json'));
const response = await fetch(new Request('https://twofactorauth.org/api/v1/data.json'));
if (response.status !== 200) {
throw new Error();
}