mirror of
https://git.krews.org/morningstar/Arcturus-Community.git
synced 2025-02-18 19:32:36 +01:00
Merge branch 'improvement/postit-remove-owner-update' into 'dev'
Ensure post-it ownership remains unchanged when text is edited, maintaining the original owner See merge request morningstar/Arcturus-Community!94
This commit is contained in:
commit
730db11ef4
@ -51,7 +51,8 @@ public class PostItSaveDataEvent extends MessageHandler {
|
||||
if (color.isEmpty())
|
||||
color = PostItColor.YELLOW.hexColor;
|
||||
|
||||
item.setUserId(room.getOwnerId());
|
||||
// Removed on Oct 15th, 2024: The owner of this item should not be altered when editing the text of a post-it. The original owner must always remain unchanged.
|
||||
// item.setUserId(room.getOwnerId());
|
||||
item.setExtradata(color + " " + text);
|
||||
item.needsUpdate(true);
|
||||
room.updateItem(item);
|
||||
|
Loading…
x
Reference in New Issue
Block a user