forked from indymedia/epicyon
Distinuguish between dm and followers only
parent
80c16e39b0
commit
7e21639ede
|
@ -2249,9 +2249,11 @@ def individualPostAsHtml(recentPostsCache: {},maxRecentPosts: int, \
|
||||||
showRepeatIcon=showRepeats
|
showRepeatIcon=showRepeats
|
||||||
showDMicon=False
|
showDMicon=False
|
||||||
if showRepeats:
|
if showRepeats:
|
||||||
if not isPublicPost(postJsonObject):
|
if isDM(postJsonObject):
|
||||||
showRepeatIcon=False
|
|
||||||
showDMicon=True
|
showDMicon=True
|
||||||
|
else:
|
||||||
|
if not isPublicPost(postJsonObject):
|
||||||
|
showRepeatIcon=False
|
||||||
|
|
||||||
titleStr=''
|
titleStr=''
|
||||||
galleryStr=''
|
galleryStr=''
|
||||||
|
|
Loading…
Reference in New Issue