File tree 1 file changed +3
-4
lines changed
1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ export interface MembershipConfig {
61
61
*
62
62
* This is what goes into the m.rtc.member event expiry field.
63
63
*/
64
- membershipEventExpiry ?: number ; // hours
64
+ membershipEventExpiry ?: number ;
65
65
66
66
/**
67
67
* The minimum delay (in milliseconds) after which we will retry sending the membership event if it
@@ -73,13 +73,12 @@ export interface MembershipConfig {
73
73
* The timeout (in milliseconds) with which the deleayed leave event on the server is configured.
74
74
* After this time the server will set the event to the disconnected stat if it has not received a keep-alive from the client.
75
75
*/
76
- // I would like to rename this to `delayedLeaveEventDelay` (having the word delayed, event, and leave is helpful i think)
77
- delayedLeaveEventDelay ?: number ; // 15s
76
+ delayedLeaveEventDelay ?: number ;
78
77
79
78
/**
80
79
* The interval (in milliseconds) in which the client will send membership keep-alives to the server.
81
80
*/
82
- delayedLeaveEventRestartPeriod ?: number ; // 5s
81
+ delayedLeaveEventRestartPeriod ?: number ;
83
82
84
83
/**
85
84
* @deprecated It should be possible to make it stable without this.
You can’t perform that action at this time.
0 commit comments