mirror of
https://github.com/TitanEmbeds/Titan.git
synced 2024-12-24 14:07:03 +01:00
Secretly raise the upload limit to 5mb from 4 and send a nice error message if server rejects
This commit is contained in:
parent
9a1c5945fb
commit
a9720fe763
@ -32,7 +32,7 @@ app.config['SQLALCHEMY_POOL_SIZE'] = 15
|
||||
app.config['RATELIMIT_STORAGE_URL'] = config["redis-uri"]
|
||||
app.config['PERMANENT_SESSION_LIFETIME'] = timedelta(days=3)
|
||||
app.config['REDIS_URL'] = config["redis-uri"]
|
||||
app.config['MAX_CONTENT_LENGTH'] = 4 * 1024 * 1024 # Limit upload size to 4mb
|
||||
app.config['MAX_CONTENT_LENGTH'] = 5 * 1024 * 1024 # Limit upload size to ~5mb
|
||||
app.secret_key = config['app-secret']
|
||||
|
||||
sentry.init_app(app)
|
||||
|
@ -1868,6 +1868,8 @@
|
||||
funct.catch(function(data) {
|
||||
if (data.status == 429) {
|
||||
Materialize.toast('You are sending messages too fast! 1 message per ' + post_timeout + ' seconds', 10000);
|
||||
} else if (data.status == 413) {
|
||||
Materialize.toast('Your file is too powerful! The maximum file size is 4 megabytes.', 5000);
|
||||
}
|
||||
});
|
||||
funct.always(function() {
|
||||
|
Loading…
Reference in New Issue
Block a user