NPE fix
This commit is contained in:
parent
36a8d14014
commit
08878ef30e
1 changed files with 4 additions and 2 deletions
|
@ -144,9 +144,11 @@ public class TTSCommandPlayerImpl extends AbstractPrologCommandPlayer {
|
||||||
i.putExtra("messageType", PEBBLE_ALERT);
|
i.putExtra("messageType", PEBBLE_ALERT);
|
||||||
i.putExtra("sender", "OsmAnd");
|
i.putExtra("sender", "OsmAnd");
|
||||||
i.putExtra("notificationData", notificationData);
|
i.putExtra("notificationData", notificationData);
|
||||||
|
if (cxt != null) {
|
||||||
ctx.sendBroadcast(i);
|
ctx.sendBroadcast(i);
|
||||||
log.info("Send message to pebble " + bld.toString());
|
log.info("Send message to pebble " + bld.toString());
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
private void initializeEngine(final Context ctx, final Activity act) {
|
private void initializeEngine(final Context ctx, final Activity act) {
|
||||||
|
|
Loading…
Reference in a new issue