dont force users who dont want new to switch sorting every time they open a page (Is this the intended behaviour?)

This commit is contained in:
64617 2022-05-09 11:11:54 +08:00
parent f6cc00ea1f
commit 8dc3be28fc

View file

@ -51,7 +51,7 @@ class Submission(Base):
flair = Column(String)
ban_reason = Column(String)
embed_url = Column(String)
new = Column(Boolean, default=True)
new = Column(Boolean, default=False)
author = relationship("User", primaryjoin="Submission.author_id==User.id")
oauth_app = relationship("OauthApp", viewonly=True)