fix: more combining shit

This commit is contained in:
rebelonion 2024-04-29 16:07:52 -05:00
parent a7589a0296
commit ed0e06d1af
3 changed files with 15 additions and 26 deletions

View file

@ -24,7 +24,7 @@ class DownloadAddonManager(
override var name: String = "Download Addon"
override var type = AddonType.DOWNLOAD
private val _isInitialized = MutableLiveData<Boolean>().apply { value = false }
private val _isInitialized = MutableLiveData<Boolean>().apply { postValue(false) }
val isInitialized: LiveData<Boolean> = _isInitialized
private var error: String? = null