forked from rDrama/rDrama
1
0
Fork 0

fix last commit

master
Aevann 2023-10-04 16:58:16 +03:00
parent 9a56f661b8
commit 31e9764220
2 changed files with 4 additions and 4 deletions

View File

@ -317,8 +317,8 @@ class Comment(Base):
@lazy @lazy
def emoji_award_emojis(self, v, OVER_18_EMOJIS): def emoji_award_emojis(self, v, OVER_18_EMOJIS):
if g.show_over_18: if g.show_over_18:
return [x.note for x in self.awards if x.kind == "emoji"][-4:] return [x.note for x in self.awards if x.kind == "emoji"][:4]
return [x.note for x in self.awards if x.kind == "emoji" and x.note not in OVER_18_EMOJIS][-4:] return [x.note for x in self.awards if x.kind == "emoji" and x.note not in OVER_18_EMOJIS][:4]
@property @property
@lazy @lazy

View File

@ -265,8 +265,8 @@ class Post(Base):
@lazy @lazy
def emoji_award_emojis(self, v, OVER_18_EMOJIS): def emoji_award_emojis(self, v, OVER_18_EMOJIS):
if g.show_over_18: if g.show_over_18:
return [x.note for x in self.awards if x.kind == "emoji"][-4:] return [x.note for x in self.awards if x.kind == "emoji"][:4]
return [x.note for x in self.awards if x.kind == "emoji" and x.note not in OVER_18_EMOJIS][-4:] return [x.note for x in self.awards if x.kind == "emoji" and x.note not in OVER_18_EMOJIS][:4]
@lazy @lazy
def realurl(self, v): def realurl(self, v):