From 872415bffe7855fcb148cb4c42fb513261cbe920 Mon Sep 17 00:00:00 2001 From: Mario Date: Wed, 26 Feb 2025 12:52:27 +0000 Subject: fix an issue where some participants could not post to forums --- include/items.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'include') diff --git a/include/items.php b/include/items.php index ff683260d..8f1b780bc 100644 --- a/include/items.php +++ b/include/items.php @@ -3329,7 +3329,9 @@ function start_delivery_chain($channel, $item, $item_id, $parent, $group = false else { // To prevent duplicates from possible clones of the forum/group, // will create a v5 UUID of the source item mid. - $arr['uuid'] = uuid_from_url($item['mid']); + // Add some extra entropy to prevent duplicate UUIDs with items where we already + // created an UUID from the mid (activities which do not provide an UUID field). + $arr['uuid'] = uuid_from_url($item['mid'] . '#group_item'); $arr['mid'] = z_root() . '/item/' . $arr['uuid']; $arr['parent_mid'] = $arr['mid']; } -- cgit v1.2.3