forked from MarseyWorld/MarseyWorld
remove #context in links
parent
ea322e4c20
commit
169dc4ebef
|
@ -160,8 +160,8 @@ class Comment(Base):
|
|||
@lazy
|
||||
def shortlink(self):
|
||||
if self.wall_user_id:
|
||||
return f"/@{self.wall_user.username}/wall/comment/{self.id}#context"
|
||||
return f"{self.post.shortlink}/{self.id}#context"
|
||||
return f"/@{self.wall_user.username}/wall/comment/{self.id}"
|
||||
return f"{self.post.shortlink}/{self.id}"
|
||||
|
||||
@property
|
||||
@lazy
|
||||
|
@ -176,7 +176,7 @@ class Comment(Base):
|
|||
@property
|
||||
@lazy
|
||||
def morecomments(self):
|
||||
return f"{self.post.permalink}/{self.id}?context=0#context"
|
||||
return f"{self.post.permalink}/{self.id}?context=0"
|
||||
|
||||
@property
|
||||
@lazy
|
||||
|
|
|
@ -59,7 +59,7 @@ class ModAction(Base):
|
|||
if self.target_user: return f'<a href="{self.target_user.url}">{self.target_user.username}</a>'
|
||||
elif self.target_post:
|
||||
return censor_slurs(f'<a href="{self.target_post.permalink}">{self.target_post.title_html}</a>', None)
|
||||
elif self.target_comment_id: return f'<a href="/comment/{self.target_comment_id}#context">comment</a>'
|
||||
elif self.target_comment_id: return f'<a href="/comment/{self.target_comment_id}">comment</a>'
|
||||
|
||||
@property
|
||||
@lazy
|
||||
|
|
|
@ -51,7 +51,7 @@ class SubAction(Base):
|
|||
if self.target_user: return f'<a href="{self.target_user.url}">{self.target_user.username}</a>'
|
||||
elif self.target_post:
|
||||
return censor_slurs(f'<a href="{self.target_post.permalink}">{self.target_post.title_html}</a>', None)
|
||||
elif self.target_comment_id: return f'<a href="/comment/{self.target_comment_id}#context">comment</a>'
|
||||
elif self.target_comment_id: return f'<a href="/comment/{self.target_comment_id}">comment</a>'
|
||||
|
||||
@property
|
||||
@lazy
|
||||
|
|
|
@ -218,7 +218,7 @@ def award_thing(v, thing_type, id):
|
|||
link = f"/{thing_type}/{thing.id}"
|
||||
link2 = link
|
||||
if thing_type == 'comment':
|
||||
link2 += '#context'
|
||||
link2 += ''
|
||||
ban_reason = f'1-Day ban award used by <a href="/@{v.username}">@{v.username}</a> on <a href="{link2}">{link}</a>'
|
||||
if not author.is_suspended:
|
||||
author.ban(reason=ban_reason, days=1)
|
||||
|
|
|
@ -310,9 +310,9 @@ def comment(v:User):
|
|||
if len(c.body) > PUSH_NOTIF_LIMIT: notifbody = c.body[:PUSH_NOTIF_LIMIT] + '...'
|
||||
else: notifbody = c.body
|
||||
|
||||
url = f'{SITE_FULL}/comment/{c.id}?read=true#context'
|
||||
url = f'{SITE_FULL}/comment/{c.id}?read=true'
|
||||
if not posting_to_submission:
|
||||
url = f'{SITE_FULL}/@{c.wall_user.username}/wall/comment/{c.id}?read=true#context'
|
||||
url = f'{SITE_FULL}/@{c.wall_user.username}/wall/comment/{c.id}?read=true'
|
||||
|
||||
push_notif(parent_user.id, title, notifbody, url)
|
||||
|
||||
|
|
|
@ -65,7 +65,7 @@ def exile_comment(v:User, cid):
|
|||
kind='exile_user',
|
||||
user_id=v.id,
|
||||
target_user_id=u.id,
|
||||
_note=f'for <a href="/comment/{c.id}#context">comment</a>'
|
||||
_note=f'for <a href="/comment/{c.id}">comment</a>'
|
||||
)
|
||||
g.db.add(ma)
|
||||
|
||||
|
|
Loading…
Reference in New Issue