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

Commit 15b89d79 authored by Nandana Dutt's avatar Nandana Dutt
Browse files

Fix missing title in broadcast

BUG:119581493
Test: adb shell setprop dumpstate.options.title xyz && adb shell cmd activity bug-report --progress
      verify broadcast has TITLE=xyz in log

Change-Id: Iad1208c1ff27e1b10d20230b8a6e28e8877f16b5
parent cde4890d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1911,7 +1911,7 @@ static void SendBugreportFinishedBroadcast() {
            am_args.push_back("android.intent.extra.SCREENSHOT");
            am_args.push_back(ds.screenshot_path_);
        }
        if (ds.options_->notification_title.empty()) {
        if (!ds.options_->notification_title.empty()) {
            am_args.push_back("--es");
            am_args.push_back("android.intent.extra.TITLE");
            am_args.push_back(ds.options_->notification_title);