- Remove suburl from beginning of avatar file path, 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.

Thanks to xet7 !

Closes #1776,
closes #386
pull/1857/head
Lauri Ojansivu 7 years ago
parent 1b94b919fe
commit 7e0bc1e33a
  1. 2
      client/components/users/userAvatar.jade
  2. 7
      client/components/users/userAvatar.js

@ -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=userData.profile.avatarUrl)
img.avatar.avatar-image(src="{{fixAvatarUrl userData.profile.avatarUrl}}")
else
+userAvatarInitials(userId=userData._id)

@ -14,6 +14,13 @@ 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';

Loading…
Cancel
Save