diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 8ae1045..3c7ac19 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,6 +1,10 @@ Changelog ========= +0.14.0 (Unreleased) +------------------------- +- Fix #53: Update user image + 0.13.3 (July 8, 2026) --------------------- - Fix: Make m150726_182212_namespace migration resilient to evolved schema (activity.module column no longer exists) diff --git a/models/Note.php b/models/Note.php index eaaf128..ed210ea 100644 --- a/models/Note.php +++ b/models/Note.php @@ -84,7 +84,7 @@ public function getPadUser() $this->userColor = EtherpadHelper::getUserColor($user); // extend array with user details from profile and user model - $editors[] = ['id' => $user->id, 'displayName' => $user->displayName, 'title' => $user->profile->title, 'image' => $user->getProfileImage()->getUrl(), 'url' => $user->getUrl(), 'color' => $this->userColor, 'online' => $this->getOnlineStatus($authorId)]; + $editors[] = ['id' => $user->id, 'displayName' => $user->displayName, 'title' => $user->profile->title, 'image' => $user->image->getUrl(), 'url' => $user->getUrl(), 'color' => $this->userColor, 'online' => $this->getOnlineStatus($authorId)]; } } return $editors; diff --git a/module.json b/module.json index eb4a8a3..d8c4585 100644 --- a/module.json +++ b/module.json @@ -3,9 +3,9 @@ "name": "Etherpad Notes", "description": "Integrates the common Etherpad online editor in spaces.", "keywords": ["etherpad", "notes"], - "version": "0.13.3", + "version": "0.14.0", "humhub": { - "minVersion": "1.18" + "minVersion": "1.19" }, "homepage": "https://github.com/humhub-contrib/notes", "screenshots": ["resources/screen1.jpg", "resources/screen2.jpg"]