remotes/1693045480750635534/spooky-22
Aevann1 2021-07-31 15:41:00 +02:00
parent 3a016fcf0d
commit 56ac1d3a9c
1 changed files with 6 additions and 0 deletions

View File

@ -6,6 +6,7 @@ from urllib.parse import urlparse
from .mix_ins import *
from drama.helpers.lazy import lazy
from drama.__main__ import Base
from .flags import *
class SubmissionAux(Base):
@ -415,6 +416,11 @@ class Submission(Base, Stndrd, Age_times, Scores, Fuzzing):
if self.url: return 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') or self.url.lower().endswith('?maxwidth=8888')
else: return False
@property
@lazy
def test(self):
print(self.flags.order_by(Flag.created_utc))
@property
@lazy
def active_flags(self):