aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2025-02-26 12:52:27 +0000
committerMario <mario@mariovavti.com>2025-02-26 12:52:27 +0000
commit872415bffe7855fcb148cb4c42fb513261cbe920 (patch)
tree20ac9a0623b049cacd4f7df28063ac0baecdc073
parenta46b781664e82ec829d3c5e13740651ff0c7b684 (diff)
downloadvolse-hubzilla-872415bffe7855fcb148cb4c42fb513261cbe920.tar.gz
volse-hubzilla-872415bffe7855fcb148cb4c42fb513261cbe920.tar.bz2
volse-hubzilla-872415bffe7855fcb148cb4c42fb513261cbe920.zip
fix an issue where some participants could not post to forums
-rw-r--r--include/items.php4
1 files changed, 3 insertions, 1 deletions
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'];
}