forked from MarseyWorld/MarseyWorld
fdsfds
parent
34ef21d6d8
commit
9c8db82f34
|
@ -326,7 +326,7 @@ class Comment(Base):
|
||||||
body = body.replace(url, f"{url_noquery}?{urlencode(p, True)}")
|
body = body.replace(url, f"{url_noquery}?{urlencode(p, True)}")
|
||||||
|
|
||||||
if v and v.shadowbanned and v.id == self.author_id and 86400 > time.time() - self.created_utc > 600:
|
if v and v.shadowbanned and v.id == self.author_id and 86400 > time.time() - self.created_utc > 600:
|
||||||
rand = randint(5,20)
|
rand = randint(1,16)
|
||||||
if self.upvotes < rand:
|
if self.upvotes < rand:
|
||||||
self.upvotes = rand
|
self.upvotes = rand
|
||||||
g.db.add(self)
|
g.db.add(self)
|
||||||
|
|
|
@ -326,7 +326,7 @@ class Submission(Base):
|
||||||
if v and v.nitter: body = body.replace("www.twitter.com", "nitter.net").replace("twitter.com", "nitter.net")
|
if v and v.nitter: body = body.replace("www.twitter.com", "nitter.net").replace("twitter.com", "nitter.net")
|
||||||
|
|
||||||
if v and v.shadowbanned and v.id == self.author_id and 86400 > time.time() - self.created_utc > 600:
|
if v and v.shadowbanned and v.id == self.author_id and 86400 > time.time() - self.created_utc > 600:
|
||||||
rand = random.randint(5,20)
|
rand = random.randint(1,16)
|
||||||
if self.upvotes < rand:
|
if self.upvotes < rand:
|
||||||
self.upvotes = rand
|
self.upvotes = rand
|
||||||
g.db.add(self)
|
g.db.add(self)
|
||||||
|
|
Loading…
Reference in New Issue