Patch from g0: fix for conversation links in Realtime updates
Previously was using the reply-to URL, which didn't match with other displays. Now sends to the right conversation page.
This commit is contained in:
@@ -149,8 +149,8 @@ RealtimeUpdate = {
|
||||
"from "+
|
||||
"<span class=\"device\">"+source+"</span>"+ // may have a link
|
||||
"</span>";
|
||||
if (data['in_reply_to_status_id']) {
|
||||
ni = ni+" <a class=\"response\" href=\""+data['in_reply_to_status_url']+"\">in context</a>";
|
||||
if (data['conversation_url']) {
|
||||
ni = ni+" <a class=\"response\" href=\""+data['conversation_url']+"\">in context</a>";
|
||||
}
|
||||
|
||||
if (repeat) {
|
||||
|
Reference in New Issue
Block a user