change maximum size of media to 40 MB

This commit is contained in:
gutmet 2022-11-21 23:01:48 +01:00
parent 9aee1f50f4
commit 619addcc28

View File

@ -17,7 +17,7 @@ import (
const (
CHARACTER_LIMIT = 500
MAX_BYTES = 50 * 1024 * 1024
MAX_BYTES = 40 * 1024 * 1024
)
var formatTemplate *template.Template