1
0
mirror of https://github.com/bitwarden/directory-connector synced 2026-01-09 12:03:55 +00:00

update jslib

This commit is contained in:
Kyle Spearrin
2018-06-13 22:14:28 -04:00
parent e179edc2e0
commit 4110e4b8cb
2 changed files with 2 additions and 2 deletions

2
jslib

Submodule jslib updated: 3303e60b40...4bce071498

View File

@@ -73,7 +73,7 @@ export class SyncService {
const reqJson = JSON.stringify(req);
let hash: string = null;
const hashBuf = await this.cryptoFunctionService.hash(this.apiService.baseUrl + reqJson, 'sha256');
const hashBuf = await this.cryptoFunctionService.hash(this.apiService.apiBaseUrl + reqJson, 'sha256');
if (hashBuf != null) {
hash = Utils.fromBufferToB64(hashBuf);
}