fix: max note text length to 8192

This commit is contained in:
こけっち 2022-03-23 11:36:10 +09:00
parent 0cf950bb35
commit 1c9b842983
No known key found for this signature in database
GPG Key ID: 21460619C5FC4DD1

View File

@ -1,4 +1,4 @@
export const MAX_NOTE_TEXT_LENGTH = 3000; export const MAX_NOTE_TEXT_LENGTH = 8192;
export const USER_ONLINE_THRESHOLD = 1000 * 60 * 10; // 10min export const USER_ONLINE_THRESHOLD = 1000 * 60 * 10; // 10min
export const USER_ACTIVE_THRESHOLD = 1000 * 60 * 60 * 24 * 3; // 3days export const USER_ACTIVE_THRESHOLD = 1000 * 60 * 60 * 24 * 3; // 3days