Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6b961bb5 authored by Android (Google) Code Review's avatar Android (Google) Code Review
Browse files

Merge change 2090

* changes:
  Fix bug #1863517: use the new signature for data message token in SubscribedFeedsIntentService.
parents bad962bf 075a4f89
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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) {