|
@@ -64,7 +64,7 @@ def create_match_frame(frame_data: dict, platform: Optional[str]) -> dict:
|
|
category=get_path(frame_data, "data", "category"),
|
|
category=get_path(frame_data, "data", "category"),
|
|
family=get_behavior_family_for_platform(frame_data.get("platform") or platform),
|
|
family=get_behavior_family_for_platform(frame_data.get("platform") or platform),
|
|
function=_get_function_name(frame_data, platform),
|
|
function=_get_function_name(frame_data, platform),
|
|
- in_app=frame_data.get("in_app"),
|
|
|
|
|
|
+ in_app=frame_data.get("in_app") or False,
|
|
module=get_path(frame_data, "module"),
|
|
module=get_path(frame_data, "module"),
|
|
package=frame_data.get("package"),
|
|
package=frame_data.get("package"),
|
|
path=frame_data.get("abs_path") or frame_data.get("filename"),
|
|
path=frame_data.get("abs_path") or frame_data.get("filename"),
|