Fix website flavor
parent
24f7bb2b45
commit
d6380c5e63
@ -0,0 +1,12 @@
|
||||
package org.thoughtcrime.securesms.notifications
|
||||
|
||||
import kotlinx.coroutines.Job
|
||||
import kotlinx.coroutines.MainScope
|
||||
import kotlinx.coroutines.launch
|
||||
import javax.inject.Inject
|
||||
import javax.inject.Singleton
|
||||
|
||||
@Singleton
|
||||
class NoOpTokenFetcher @Inject constructor() : TokenFetcher {
|
||||
override fun fetch(): Job = MainScope().launch { }
|
||||
}
|
||||
Loading…
Reference in New Issue