fix: Use category and action if not matomo

This commit is contained in:
2025-07-16 17:18:04 +02:00
parent 166026a766
commit 17aecbc8ec
4 changed files with 20 additions and 17 deletions
@@ -176,6 +176,14 @@ class AnalyticsFileParser {
}
definition.action = action
} else {
if let category = event.category {
definition.category = category
}
if let action = event.action {
definition.action = action
}
}
return definition