open links prompt to select url for copying

This commit is contained in:
woorst
2018-11-03 18:18:27 -04:00
parent a83b5108d3
commit 6a262333d3
4 changed files with 38 additions and 34 deletions

View File

@@ -149,7 +149,7 @@ class Content(object):
data['type'] = 'Comment'
data['level'] = comment.nested_level
data['body'] = comment.body
data['html'] = comment.body_html
data['html'] = comment.body_html or ''
data['created'] = cls.humanize_timestamp(comment.created_utc)
data['score'] = '{0} pts'.format(
'-' if comment.score_hidden else comment.score)