From 53e5ee27159a256df52f7b5cd4f724753b2a95af Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Tue, 21 Sep 2021 23:45:47 +0200 Subject: [PATCH] sdf --- files/__main__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/files/__main__.py b/files/__main__.py index 3d808cb09..9478d13a2 100644 --- a/files/__main__.py +++ b/files/__main__.py @@ -84,6 +84,8 @@ db_session = scoped_session(sessionmaker(bind=engine, autoflush=False)) @app.before_request def before_request(): + + if request.content_length > 16 * 1024 * 1024: abort(413) if request.method.lower() != "get" and app.config["READ_ONLY"]: return {"error":f"{app.config['SITE_NAME']} is currently in read-only mode."}, 500