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