This commit is contained in:
Aevann1 2022-01-14 06:15:41 +02:00
parent 7d6da05dbd
commit 16f69163ec
7 changed files with 38 additions and 10 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')))
return self.url and any((self.url.lower().endswith(x) for x in ('.mp4','.webm','.mov', '#t=0.1')))
@property
@lazy