increase effortpost criteria to 2k chars

pull/221/head
Aevann 2024-01-11 00:08:15 +02:00
parent b069220e72
commit df8e8d239c
2 changed files with 2 additions and 2 deletions

View File

@ -518,7 +518,7 @@ class Comment(Base):
@property
@lazy
def is_effortpost(self):
return len(self.body) >= 1000
return len(self.body) >= 2000
def pin_parents(self):
c = self

View File

@ -396,4 +396,4 @@ class Post(Base):
@property
@lazy
def is_effortpost(self):
return len(self.body) >= 1000
return len(self.body) >= 2000