From 7d6cfe1c51b5e81a2e279dc8d9c8b5d5944c6ba9 Mon Sep 17 00:00:00 2001 From: Joshua Ramon Enslin Date: Wed, 19 Jul 2023 10:24:23 +0200 Subject: [PATCH] Categorize event type 36 --- src/Checks/Plausi/MDEventCategory.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Checks/Plausi/MDEventCategory.php b/src/Checks/Plausi/MDEventCategory.php index 6a4658f..a8ce766 100644 --- a/src/Checks/Plausi/MDEventCategory.php +++ b/src/Checks/Plausi/MDEventCategory.php @@ -37,7 +37,7 @@ enum MDEventCategory implements JsonSerializable { if (in_array($event_type, MDEventsSet::EVENTS_NO_PRODUCTION, true)) { return self::no_production; } - if ($event_type === 5) { + if ($event_type === 5 || $event_type === 36) { // Was depicted (actor + place) return self::no_production; } throw new Exception("Uncategorized event type: " . $event_type);