File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -406,9 +406,12 @@ export class MatrixEvent extends TypedEventEmitter<MatrixEventEmittedEvents, Mat
406
406
*/
407
407
public forwardLooking = true ;
408
408
409
- /* If the event is a `m.key.verification.request` (or to_device `m.key.verification.start`) event,
409
+ /**
410
+ * If the event is a `m.key.verification.request` (or to_device `m.key.verification.start`) event,
410
411
* `Crypto` will set this the `VerificationRequest` for the event
411
412
* so it can be easily accessed from the timeline.
413
+ *
414
+ * @deprecated Not used by the rust crypto implementation.
412
415
*/
413
416
public verificationRequest ?: VerificationRequest ;
414
417
@@ -896,6 +899,8 @@ export class MatrixEvent extends TypedEventEmitter<MatrixEventEmittedEvents, Mat
896
899
* @param userId - the user who received this event
897
900
*
898
901
* @returns a promise that resolves when the request is queued
902
+ *
903
+ * @deprecated Not used by the rust crypto implementation.
899
904
*/
900
905
public cancelAndResendKeyRequest ( crypto : Crypto , userId : string ) : Promise < void > {
901
906
const wireContent = this . getWireContent ( ) ;
@@ -1720,6 +1725,9 @@ export class MatrixEvent extends TypedEventEmitter<MatrixEventEmittedEvents, Mat
1720
1725
} ;
1721
1726
}
1722
1727
1728
+ /**
1729
+ * @deprecated Not used by the rust crypto implementation.
1730
+ */
1723
1731
public setVerificationRequest ( request : VerificationRequest ) : void {
1724
1732
this . verificationRequest = request ;
1725
1733
}
You can’t perform that action at this time.
0 commit comments