@@ -2926,7 +2926,7 @@ export class MatrixClient extends TypedEventEmitter<EmittedEvents, ClientEventHa
29262926 const path = this . makeKeyBackupPath ( roomId , sessionId , version ) ;
29272927 return this . http . authedRequest (
29282928 undefined , Method . Put , path . path , path . queryData , data ,
2929- { prefix : PREFIX_UNSTABLE } ,
2929+ { prefix : PREFIX_V3 } ,
29302930 ) ;
29312931 }
29322932
@@ -3217,7 +3217,7 @@ export class MatrixClient extends TypedEventEmitter<EmittedEvents, ClientEventHa
32173217
32183218 const res = await this . http . authedRequest < IRoomsKeysResponse | IRoomKeysResponse | IKeyBackupSession > (
32193219 undefined , Method . Get , path . path , path . queryData , undefined ,
3220- { prefix : PREFIX_UNSTABLE } ,
3220+ { prefix : PREFIX_V3 } ,
32213221 ) ;
32223222
32233223 if ( ( res as IRoomsKeysResponse ) . rooms ) {
@@ -3282,7 +3282,7 @@ export class MatrixClient extends TypedEventEmitter<EmittedEvents, ClientEventHa
32823282 const path = this . makeKeyBackupPath ( roomId , sessionId , version ) ;
32833283 return this . http . authedRequest (
32843284 undefined , Method . Delete , path . path , path . queryData , undefined ,
3285- { prefix : PREFIX_UNSTABLE } ,
3285+ { prefix : PREFIX_V3 } ,
32863286 ) ;
32873287 }
32883288
0 commit comments