Catch error for null value of NightLightActive
This commit is contained in:
+6
-1
@@ -74,7 +74,12 @@ function _build_theme_variants() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function _apply_theme_variant() {
|
function _apply_theme_variant() {
|
||||||
nightlight_active = proxy.get_cached_property('NightLightActive').get_boolean() || false;
|
try {
|
||||||
|
nightlight_active = proxy.get_cached_property('NightLightActive').get_boolean();
|
||||||
|
}
|
||||||
|
catch(e) {
|
||||||
|
nightlight_active = false;
|
||||||
|
}
|
||||||
_set_theme(nightlight_active ? user_theme_night : user_theme_day);
|
_set_theme(nightlight_active ? user_theme_night : user_theme_day);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user