mirror of https://github.com/halo-dev/halo
修复第一次安装启动时首页500的问题
parent
e39ade7ce0
commit
0f65c815fe
|
@ -46,8 +46,11 @@ public class StartupConfig implements ApplicationListener<ContextRefreshedEvent>
|
||||||
private void loadActiveTheme(){
|
private void loadActiveTheme(){
|
||||||
try {
|
try {
|
||||||
String themeValue = optionsService.findOneOption("theme");
|
String themeValue = optionsService.findOneOption("theme");
|
||||||
if(StringUtils.isNotEmpty("themeValue")){
|
if(StringUtils.isNotEmpty("themeValue") && !StringUtils.equals(themeValue,null)){
|
||||||
BaseController.THEME = themeValue;
|
BaseController.THEME = themeValue;
|
||||||
|
}else{
|
||||||
|
//以防万一
|
||||||
|
BaseController.THEME = "anatole";
|
||||||
}
|
}
|
||||||
}catch (Exception e){
|
}catch (Exception e){
|
||||||
log.error("加载主题设置失败:{0}",e.getMessage());
|
log.error("加载主题设置失败:{0}",e.getMessage());
|
||||||
|
|
Loading…
Reference in New Issue