From 3d08a5048b39092ac8e25fe569d37cc04473f344 Mon Sep 17 00:00:00 2001 From: Dean Lee Date: Thu, 13 Nov 2025 06:22:14 +0800 Subject: [PATCH] replay: Only send bookmarkButton message when --all flag is set (#36612) Only send BookmarkButton message when --all flag is set --- tools/replay/main.cc | 2 +- tools/replay/replay.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/replay/main.cc b/tools/replay/main.cc index f950985075..4609012194 100644 --- a/tools/replay/main.cc +++ b/tools/replay/main.cc @@ -30,7 +30,7 @@ Options: --qcam Load qcamera --no-hw-decoder Disable HW video decoding --no-vipc Do not output video - --all Output all messages including uiDebug, userBookmark + --all Output all messages including bookmarkButton, uiDebug, userBookmark -h, --help Show this help message )"; diff --git a/tools/replay/replay.cc b/tools/replay/replay.cc index 7ecad82873..c9ab7e7e2b 100644 --- a/tools/replay/replay.cc +++ b/tools/replay/replay.cc @@ -20,7 +20,7 @@ Replay::Replay(const std::string &route, std::vector allow, std::ve std::signal(SIGUSR1, interrupt_sleep_handler); if (!(flags_ & REPLAY_FLAG_ALL_SERVICES)) { - block.insert(block.end(), {"uiDebug", "userBookmark"}); + block.insert(block.end(), {"bookmarkButton", "uiDebug", "userBookmark"}); } setupServices(allow, block); setupSegmentManager(!allow.empty() || !block.empty());