Clarify command_line list format matches protobuf schema in tombstone parser

This commit is contained in:
Janik Besendorf
2026-03-25 09:00:44 +01:00
parent d8c3d1e418
commit 711f7cedc1

View File

@@ -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