修复第一次安装启动时首页500的问题

pull/18/head
RYAN0UP_ 2018-05-15 16:18:09 +08:00
parent e39ade7ce0
commit 0f65c815fe
1 changed files with 4 additions and 1 deletions

View File

@ -46,8 +46,11 @@ public class StartupConfig implements ApplicationListener<ContextRefreshedEvent>
private void loadActiveTheme(){
try {
String themeValue = optionsService.findOneOption("theme");
if(StringUtils.isNotEmpty("themeValue")){
if(StringUtils.isNotEmpty("themeValue") && !StringUtils.equals(themeValue,null)){
BaseController.THEME = themeValue;
}else{
//以防万一
BaseController.THEME = "anatole";
}
}catch (Exception e){
log.error("加载主题设置失败:{0}",e.getMessage());