package com.github.libretube.extensions import androidx.lifecycle.MutableLiveData fun MutableLiveData.updateIfChanged(newValue: T) { if (value != newValue) value = newValue }