Fix settings search crash (fixes #5002)

Can't lateinit since the controllers are instantiated via reflection.
This commit is contained in:
arkon 2021-05-02 13:29:20 -04:00
parent 3c947f323f
commit b453be081e

View File

@ -33,11 +33,10 @@ abstract class SettingsController : PreferenceController() {
var preferenceKey: String? = null
val preferences: PreferencesHelper = Injekt.get()
lateinit var viewScope: CoroutineScope
val viewScope: CoroutineScope = MainScope()
private var themedContext: Context? = null
override fun onCreateView(inflater: LayoutInflater, container: ViewGroup, savedInstanceState: Bundle?): View {
viewScope = MainScope()
val view = super.onCreateView(inflater, container, savedInstanceState)
if (this is RootController) {