Skip to content

Commit

Permalink
Medtrum: try to fix stack overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
MilosKozak committed Dec 12, 2024
1 parent f645d29 commit a6831ad
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ open class SingleLiveEvent<T> : MutableLiveData<T>() {
@MainThread
override fun setValue(t: T?) {
mPending.set(true)
super.value = t
super.setValue(t)
}

@MainThread
Expand Down

0 comments on commit a6831ad

Please sign in to comment.