@@ -58,7 +58,7 @@ export type Binding = {
58
58
* https://gist.github.com/jryans/839a09bf0c5a70e2f36ed990d50ed928
59
59
*/
60
60
export default class AddThreepid {
61
- private sessionId : string ;
61
+ private sessionId ? : string ;
62
62
private submitUrl ?: string ;
63
63
private bind = false ;
64
64
private readonly clientSecret : string ;
@@ -202,7 +202,7 @@ export default class AddThreepid {
202
202
throw new UserFriendlyError ( "No identity access token found" ) ;
203
203
}
204
204
await this . matrixClient . bindThreePid ( {
205
- sid : this . sessionId ,
205
+ sid : this . sessionId ! ,
206
206
client_secret : this . clientSecret ,
207
207
id_server : getIdServerDomain ( this . matrixClient ) ,
208
208
id_access_token : identityAccessToken ,
@@ -278,7 +278,7 @@ export default class AddThreepid {
278
278
*/
279
279
private makeAddThreepidOnlyRequest = ( auth ?: IAddThreePidOnlyBody [ "auth" ] | null ) : Promise < { } > => {
280
280
return this . matrixClient . addThreePidOnly ( {
281
- sid : this . sessionId ,
281
+ sid : this . sessionId ! ,
282
282
client_secret : this . clientSecret ,
283
283
auth : auth ?? undefined ,
284
284
} ) ;
@@ -302,13 +302,13 @@ export default class AddThreepid {
302
302
if ( this . submitUrl ) {
303
303
result = await this . matrixClient . submitMsisdnTokenOtherUrl (
304
304
this . submitUrl ,
305
- this . sessionId ,
305
+ this . sessionId ! ,
306
306
this . clientSecret ,
307
307
msisdnToken ,
308
308
) ;
309
309
} else if ( this . bind || ! supportsSeparateAddAndBind ) {
310
310
result = await this . matrixClient . submitMsisdnToken (
311
- this . sessionId ,
311
+ this . sessionId ! ,
312
312
this . clientSecret ,
313
313
msisdnToken ,
314
314
await authClient . getAccessToken ( ) ,
@@ -323,7 +323,7 @@ export default class AddThreepid {
323
323
if ( supportsSeparateAddAndBind ) {
324
324
if ( this . bind ) {
325
325
await this . matrixClient . bindThreePid ( {
326
- sid : this . sessionId ,
326
+ sid : this . sessionId ! ,
327
327
client_secret : this . clientSecret ,
328
328
id_server : getIdServerDomain ( this . matrixClient ) ,
329
329
id_access_token : await authClient . getAccessToken ( ) ,
0 commit comments