From 711f7cedc1aa40272724f11e9a601d9e65ffdb7b Mon Sep 17 00:00:00 2001 From: Janik Besendorf Date: Wed, 25 Mar 2026 09:00:44 +0100 Subject: [PATCH] Clarify command_line list format matches protobuf schema in tombstone parser --- src/mvt/android/artifacts/tombstone_crashes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mvt/android/artifacts/tombstone_crashes.py b/src/mvt/android/artifacts/tombstone_crashes.py index 0b8e522..fea9365 100644 --- a/src/mvt/android/artifacts/tombstone_crashes.py +++ b/src/mvt/android/artifacts/tombstone_crashes.py @@ -193,7 +193,7 @@ class TombstoneCrashArtifact(AndroidArtifact): # eg. "Process uptime: 40s" tombstone[destination_key] = int(value_clean.rstrip("s")) elif destination_key == "command_line": - # XXX: Check if command line should be a single string in a list, or a list of strings. + # Wrap in list for consistency with protobuf format (repeated string). tombstone[destination_key] = [value_clean] else: tombstone[destination_key] = value_clean