This commit is contained in:
Aevann1 2021-10-01 08:34:09 +02:00
parent 783325e4cd
commit 8a0c051e59
3 changed files with 8 additions and 15 deletions

View file

@ -1,3 +1,4 @@
from _typeshed import Self
from flask import render_template, g
from sqlalchemy import *
from sqlalchemy.orm import relationship, deferred
@ -365,14 +366,6 @@ class Submission(Base):
if self.url: return self.url.lower().endswith('.webp') or self.url.lower().endswith('.jpg') or self.url.lower().endswith('.png') or self.url.lower().endswith('.gif') or self.url.lower().endswith('.jpeg') or self.url.lower().endswith('?maxwidth=9999')
else: return False
@property
@lazy
def is_video(self) -> bool:
if self.url:
return self.url.startswith("https://i.imgur.com") and self.url.lower().endswith('.mp4')
else:
return False
@property
@lazy
def active_flags(self): return self.flags.count()