avoid npe when accessing the pgp connection service
This commit is contained in:
parent
f30df7a535
commit
ba9ba8ffe2
|
@ -334,7 +334,7 @@ public class XmppConnectionService extends Service implements OnPhoneContactsLoa
|
||||||
}
|
}
|
||||||
|
|
||||||
public PgpEngine getPgpEngine() {
|
public PgpEngine getPgpEngine() {
|
||||||
if (pgpServiceConnection.isBound()) {
|
if (pgpServiceConnection != null && pgpServiceConnection.isBound()) {
|
||||||
if (this.mPgpEngine == null) {
|
if (this.mPgpEngine == null) {
|
||||||
this.mPgpEngine = new PgpEngine(new OpenPgpApi(
|
this.mPgpEngine = new PgpEngine(new OpenPgpApi(
|
||||||
getApplicationContext(),
|
getApplicationContext(),
|
||||||
|
|
Loading…
Reference in a new issue