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

Commit 4286801c authored by Wei Wang's avatar Wei Wang Committed by android-build-merger
Browse files

Merge "init: fix BuildTriggersString for empty string"

am: 9b1d5e15

Change-Id: Ia344bac744e767ab26d7811ceb2806cce5f28a60
parents ea516950 9b1d5e15
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -247,7 +247,9 @@ std::string Action::BuildTriggersString() const {
        result += event_trigger_;
        result += ' ';
    }
    if (!result.empty()) {
        result.pop_back();
    }
    return result;
}