This commit is contained in:
Aevann1 2022-01-14 06:38:27 +02:00
parent 25ac654745
commit 642a52d2f9
5 changed files with 6 additions and 6 deletions

View file

@ -424,7 +424,7 @@ class Submission(Base):
@property
@lazy
def is_video(self):
return self.url and any((self.url.lower().endswith(x) for x in ('.mp4','.webm','.mov', '#t=0.1')))
return self.url and any((self.url.lower().endswith(x) for x in ('.mp4','.webm','.mov')))
@property
@lazy