Merge change 2090

* changes:
  Fix bug #1863517: use the new signature for data message token in SubscribedFeedsIntentService.
This commit is contained in:
Android (Google) Code Review
2009-05-20 12:18:29 -07:00

View File

@@ -60,7 +60,7 @@ public class SubscribedFeedsIntentService extends IntentService {
"android.intent.extra.from_trusted_server", false);
if (fromTrustedServer) {
String accountName = intent.getStringExtra("account");
String token = intent.getStringExtra("message_token");
String token = intent.getStringExtra(Intent.EXTRA_REMOTE_INTENT_TOKEN);
if (TextUtils.isEmpty(accountName) || TextUtils.isEmpty(token)) {
if (Config.LOGD) {