docs: fix comment on time being 300s (5m) instead of 30s

This commit is contained in:
jubb 2021-11-23 11:20:02 +11:00
parent 48b3a5038c
commit f7f3883250
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ class CallMessage(): ControlMessage() {
override val isSelfSendValid: Boolean get() = type in arrayOf(ANSWER, END_CALL)
override val ttl: Long = 300000L // 30s
override val ttl: Long = 300000L // 5m
override fun isValid(): Boolean = super.isValid() && type != null && callId != null
&& (!sdps.isNullOrEmpty() || type in listOf(END_CALL, PRE_OFFER))