From 56a415ef4576c63f5c74f826af18ef979989a521 Mon Sep 17 00:00:00 2001
From: Daniel Supernault
- + {{reply.favourites_count == 1 ? '1 like' : reply.favourites_count + ' likes'}} Reply
@@ -1012,13 +1012,14 @@ export default { window.location.href = url; }, - purl(profile, showOrigin = false) { + permalinkUrl(reply, showOrigin = false) { + let profile = reply.account; if(profile.local == true) { return profile.url; } else { return showOrigin ? - profile.url : - '/i/web/profile/_/' + profile.id; + reply.url : + '/i/web/post/_/' + profile.id + '/' + reply.id; } }