1
0
mirror of https://github.com/Stirling-Tools/Stirling-PDF.git synced 2024-09-28 15:50:08 +02:00

hometext fix

This commit is contained in:
Anthony Stirling 2023-08-26 23:45:43 +01:00
parent cfaaeebd4a
commit 135f9611df

View File

@ -36,7 +36,7 @@ public class AppConfig {
@Bean(name = "homeText")
public String homeText() {
return applicationProperties.getUi().getHomeDescription();
return (applicationProperties.getUi().getHomeDescription() != null) ? applicationProperties.getUi().getHomeDescription() : "null";
}