mirror of
https://github.com/nextcloud/talk-android.git
synced 2024-11-23 05:25:31 +03:00
Resolve klint issues
Signed-off-by: Tim Krüger <t@timkrueger.me>
This commit is contained in:
parent
7852fc9e30
commit
567326da5a
2 changed files with 4 additions and 2 deletions
|
@ -341,7 +341,8 @@ class MagicFirebaseMessagingService : FirebaseMessagingService() {
|
|||
if (hasParticipantsInCall) {
|
||||
for (participant in participantList) {
|
||||
if (participant.actorId == signatureVerification.userEntity.userId &&
|
||||
participant.actorType == Participant.ActorType.USERS) {
|
||||
participant.actorType == Participant.ActorType.USERS
|
||||
) {
|
||||
inCallOnDifferentDevice = true
|
||||
break
|
||||
}
|
||||
|
|
|
@ -323,7 +323,8 @@ class ChatController(args: Bundle) :
|
|||
override fun onNext(roomOverall: RoomOverall) {
|
||||
currentConversation = roomOverall.ocs.data
|
||||
Log.d(
|
||||
TAG, "getRoomInfo. token: " + currentConversation?.getToken() +
|
||||
TAG,
|
||||
"getRoomInfo. token: " + currentConversation?.getToken() +
|
||||
" sessionId: " + currentConversation?.sessionId
|
||||
)
|
||||
loadAvatarForStatusBar()
|
||||
|
|
Loading…
Reference in a new issue