Extract report link

master
Bob Mottram 2019-08-24 14:02:32 +01:00
parent faeff04a88
commit ca2e77c14d
1 changed files with 4 additions and 1 deletions

View File

@ -546,7 +546,10 @@ def htmlNewPost(baseDir: str,path: str,inReplyTo: str,mentions: []) -> str:
"""
reportUrl=None
if '/newreport?' in path:
reportUrl=path.split('/newreport?')[1]
if '?url=' in path:
reportUrl=path.split('?url=')[1]
if ';' in reportUrl:
reportUrl=reportUrl.split(';')[0]
path=path.split('/newreport?')[0]+'/newreport'
replyStr=''
if not path.endswith('/newshare'):