From c8769514f33b67314afaab74475d4de8f71d4f8f Mon Sep 17 00:00:00 2001 From: Bruno Windels <274386+bwindels@users.noreply.github.com> Date: Fri, 31 Mar 2023 11:57:10 +0200 Subject: [PATCH] adjust comment to reflect which keys we're talking about --- src/matrix/verification/CrossSigning.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/matrix/verification/CrossSigning.ts b/src/matrix/verification/CrossSigning.ts index 99e07632..591d57cc 100644 --- a/src/matrix/verification/CrossSigning.ts +++ b/src/matrix/verification/CrossSigning.ts @@ -411,7 +411,7 @@ export class CrossSigning { const request = this.hsApi.uploadSignatures(payload, {log}); await request.response(); // we don't write the signatures to storage, as we don't want to have too many special - // cases in the trust algorithm, so instead we just clear the cross signing keys + // cases in the trust algorithm, so instead we just clear the device keys // so that they will be refetched when trust is recalculated await this.deviceTracker.invalidateUserKeys(this.ownUserId); this.emitUserTrustUpdate(this.ownUserId, log);