diff --git a/CHANGELOG.md b/CHANGELOG.md index 5addda76a..6e7dcdee7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,14 +15,6 @@ Add Caddy plugins: Add configuring webhooks: - [Make the attributes that the webhook sends configurable](https://github.com/wekan/wekan/pull/1852). -and fixes the following bugs: - -- [Remove suburl from beginning of avatar file path](https://github.com/wekan/wekan/issues/1776), - so that avatar images don't get broken when root-url changes - to different sub-url. This does not change avatar urls - in database, instead this [fixes url on the fly after - loading avatar url from database](https://github.com/wekan/wekan/commit/7e0bc1e33aef6dc0de11a595b81854623b417572). - Thanks to Caddy contributors, and Github users omarsy and xet7 for their contributions. # v1.34 2018-08-22 Wekan release diff --git a/client/components/users/userAvatar.jade b/client/components/users/userAvatar.jade index c61ade216..ebfa48ba8 100644 --- a/client/components/users/userAvatar.jade +++ b/client/components/users/userAvatar.jade @@ -1,7 +1,7 @@ template(name="userAvatar") a.member.js-member(title="{{userData.profile.fullname}} ({{userData.username}})") if userData.profile.avatarUrl - img.avatar.avatar-image(src="{{fixAvatarUrl userData.profile.avatarUrl}}") + img.avatar.avatar-image(src="{{userData.profile.avatarUrl}}") else +userAvatarInitials(userId=userData._id) diff --git a/client/components/users/userAvatar.js b/client/components/users/userAvatar.js index 4578d0b9b..91cad2377 100644 --- a/client/components/users/userAvatar.js +++ b/client/components/users/userAvatar.js @@ -14,13 +14,6 @@ Template.userAvatar.helpers({ }); }, - fixAvatarUrl(avatarUrl) { - // Remove suburl from beginning of avatar file path, - // so that avatar images don't get broken when root-url changes to different sub-url. - avatarUrl = `/${ avatarUrl.substring(avatarUrl.indexOf('/cfs/files/avatars/')+1)}`; - return avatarUrl; - }, - memberType() { const user = Users.findOne(this.userId); return user && user.isBoardAdmin() ? 'admin' : 'normal';