diff --git a/themes/antergos/js/greeter.js b/themes/antergos/js/greeter.js index d6af2a6..fc57c16 100644 --- a/themes/antergos/js/greeter.js +++ b/themes/antergos/js/greeter.js @@ -137,8 +137,8 @@ class AntergosThemeUtils { logo = config.get_str( 'branding', 'logo' ) || ''; user_image = config.get_str( 'branding', 'user_image' ) || ''; - this.debug = config.get_str( 'greeter', 'debug_mode' ); - this.debug = (null !== this.debug) ? this.debug : false; + this.debug = config.get_bool( 'greeter', 'debug_mode' ); + this.debug = (true === this.debug) ? this.debug : false; background_images_dir = config.get_str( 'branding', 'background_images' ) || '';