diff options
Diffstat (limited to 'gui/components')
-rw-r--r-- | gui/components/Splash.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/components/Splash.qml b/gui/components/Splash.qml index 5e62ad9..9c054a6 100644 --- a/gui/components/Splash.qml +++ b/gui/components/Splash.qml @@ -223,7 +223,7 @@ Page { } function isEmpty(val) { - return val.length == 0; + return val==undefined ? true : val.length == 0; } function isEmptyMotd(motd) { |