mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-31 19:57:06 +01:00
fix NPE on Kindle
This commit is contained in:
parent
694857dd4e
commit
5afd93c5f5
1 changed files with 4 additions and 1 deletions
|
@ -155,7 +155,10 @@ public class UpdateCheckReceiver extends BroadcastReceiver {
|
||||||
if ( 0 < params.length() ) {
|
if ( 0 < params.length() ) {
|
||||||
HttpPost post = makePost( context, "getUpdates" );
|
HttpPost post = makePost( context, "getUpdates" );
|
||||||
String json = runPost( post, params );
|
String json = runPost( post, params );
|
||||||
makeNotificationsIf( context, fromUI, json, pm, packageName, dals );
|
if ( null != json ) {
|
||||||
|
makeNotificationsIf( context, fromUI, json, pm, packageName,
|
||||||
|
dals );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue