mirror of
https://github.com/nextcloud/talk-android.git
synced 2024-11-26 23:25:20 +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) {
|
if (hasParticipantsInCall) {
|
||||||
for (participant in participantList) {
|
for (participant in participantList) {
|
||||||
if (participant.actorId == signatureVerification.userEntity.userId &&
|
if (participant.actorId == signatureVerification.userEntity.userId &&
|
||||||
participant.actorType == Participant.ActorType.USERS) {
|
participant.actorType == Participant.ActorType.USERS
|
||||||
|
) {
|
||||||
inCallOnDifferentDevice = true
|
inCallOnDifferentDevice = true
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
|
|
|
@ -323,7 +323,8 @@ class ChatController(args: Bundle) :
|
||||||
override fun onNext(roomOverall: RoomOverall) {
|
override fun onNext(roomOverall: RoomOverall) {
|
||||||
currentConversation = roomOverall.ocs.data
|
currentConversation = roomOverall.ocs.data
|
||||||
Log.d(
|
Log.d(
|
||||||
TAG, "getRoomInfo. token: " + currentConversation?.getToken() +
|
TAG,
|
||||||
|
"getRoomInfo. token: " + currentConversation?.getToken() +
|
||||||
" sessionId: " + currentConversation?.sessionId
|
" sessionId: " + currentConversation?.sessionId
|
||||||
)
|
)
|
||||||
loadAvatarForStatusBar()
|
loadAvatarForStatusBar()
|
||||||
|
|
Loading…
Reference in a new issue