From 31f9062422e1abe242c064323b66502ba130ad7c Mon Sep 17 00:00:00 2001 From: yflory Date: Thu, 17 May 2018 11:46:16 +0200 Subject: [PATCH] Fix avatar pin --- www/common/outer/async-store.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/common/outer/async-store.js b/www/common/outer/async-store.js index d4c4b30f0..6b1a5b4a5 100644 --- a/www/common/outer/async-store.js +++ b/www/common/outer/async-store.js @@ -92,7 +92,7 @@ define([ var profileChan = profile.edit ? Hash.hrefToHexChannelId('/profile/#' + profile.edit, null) : null; if (profileChan) { list.push(profileChan); } var avatarChan = profile.avatar ? Hash.hrefToHexChannelId(profile.avatar, null) : null; - if (avatarChan) { list.push(avatarChan); } + if (avatarChan) { list.push(Util.base64ToHex(avatarChan)); } } if (store.proxy.friends) {