[Fix] Ignore missing bundle

This commit is contained in:
Robert von Burg 2020-08-27 14:07:06 +02:00
parent 843f16244a
commit cfe6c932f8
1 changed files with 2 additions and 0 deletions

View File

@ -65,6 +65,8 @@ public class I18nMessage {
}
public String getBundle() {
if (this.bundle == null)
return "";
return this.bundle.getBaseBundleName();
}