refactor: add null case

This commit is contained in:
jubb 2022-03-09 10:26:06 +11:00
parent c16ca83279
commit 1f4c2f9a08
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ class CallMessageProcessor(private val context: Context, private val textSecureP
END_CALL -> incomingHangup(nextMessage)
ICE_CANDIDATES -> handleIceCandidates(nextMessage)
PRE_OFFER -> incomingPreOffer(nextMessage)
PROVISIONAL_ANSWER -> {} // TODO: if necessary
PROVISIONAL_ANSWER, null -> {} // TODO: if necessary
}
}
}