remotes/1693045480750635534/spooky-22
Aevann1 2022-05-26 20:09:44 +02:00
parent a9cc73bb7e
commit 957cf5ba8f
2 changed files with 2 additions and 2 deletions

View File

@ -669,7 +669,7 @@ def admin_userawards_post(v):
for key, value in notify_awards.items():
note += f"{value} {AWARDS[key]['title']}, "
if len(note) > 256: return {"error": "You're giving too many awards at the same time!"}
if len(note) > 500: return {"error": "You're giving too many awards at the same time!"}
ma=ModAction(
kind="grant_awards",

View File

@ -380,7 +380,7 @@ CREATE TABLE public.modactions (
target_comment_id integer,
created_utc integer NOT NULL,
kind character varying(32) DEFAULT NULL::character varying,
_note character varying(256) DEFAULT NULL::character varying
_note character varying(500) DEFAULT NULL::character varying
);