This commit is contained in:
Benoit Marty 2020-10-01 21:18:18 +02:00
parent cee5f8a0fb
commit cb33b9f158
2 changed files with 7 additions and 9 deletions

View File

@ -113,8 +113,4 @@ constructor(trustPinned: Array<TrustManager>, acceptedTlsVersions: List<TlsVersi
} }
return socket return socket
} }
companion object {
private val LOG_TAG = TLSSocketFactory::class.java.simpleName
}
} }

View File

@ -60,11 +60,13 @@ class VectorFirebaseMessagingService : FirebaseMessagingService() {
override fun onCreate() { override fun onCreate() {
super.onCreate() super.onCreate()
notificationDrawerManager = vectorComponent().notificationDrawerManager() with(vectorComponent()) {
notifiableEventResolver = vectorComponent().notifiableEventResolver() notificationDrawerManager = notificationDrawerManager()
pusherManager = vectorComponent().pusherManager() notifiableEventResolver = notifiableEventResolver()
activeSessionHolder = vectorComponent().activeSessionHolder() pusherManager = pusherManager()
vectorPreferences = vectorComponent().vectorPreferences() activeSessionHolder = activeSessionHolder()
vectorPreferences = vectorPreferences()
}
} }
/** /**