one more null check

This commit is contained in:
Milos Kozak 2017-06-19 23:08:56 +02:00
parent b185733859
commit 745f9270ee

View file

@ -116,7 +116,7 @@ public class PersistentNotificationPlugin implements PluginBase {
String line1 = ctx.getString(R.string.noprofile);
if (MainApp.getConfigBuilder().getActiveProfileInterface() == null)
if (MainApp.getConfigBuilder().getActiveProfileInterface() == null || MainApp.getConfigBuilder().getProfile() == null)
return;
String units = MainApp.getConfigBuilder().getProfileUnits();