put dbg field in app object, not its parent

This commit is contained in:
Eric House 2015-06-09 06:39:46 -07:00
parent f296ab4dc3
commit 9e92af7c1f

View file

@ -155,9 +155,9 @@ public class UpdateCheckReceiver extends BroadcastReceiver {
if ( devOK( context ) ) {
appParams.put( k_DEVOK, true );
}
appParams.put( k_DEBUG, BuildConfig.DEBUG );
params.put( k_APP, appParams );
params.put( k_DEVID, XWPrefs.getDevID( context ) );
params.put( k_DEBUG, BuildConfig.DEBUG );
} catch ( org.json.JSONException jse ) {
DbgUtils.loge( jse );
}