diff options
| author | Hazel K <acomputerdog@gmail.com> | 2024-10-04 09:15:12 -0400 |
|---|---|---|
| committer | Hazel K <acomputerdog@gmail.com> | 2024-10-04 09:15:12 -0400 |
| commit | 95a0e814bc0c7678d7de64d6c6f7a106b6443199 (patch) | |
| tree | f736c22da411070fb4a07be2c69684131fd9ec50 /packages/backend/src/const.ts | |
| parent | fix lint errors (diff) | |
| download | sharkey-95a0e814bc0c7678d7de64d6c6f7a106b6443199.tar.gz sharkey-95a0e814bc0c7678d7de64d6c6f7a106b6443199.tar.bz2 sharkey-95a0e814bc0c7678d7de64d6c6f7a106b6443199.zip | |
remove numeric separators
Diffstat (limited to 'packages/backend/src/const.ts')
| -rw-r--r-- | packages/backend/src/const.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/backend/src/const.ts b/packages/backend/src/const.ts index 29b796e161..b8ad86497c 100644 --- a/packages/backend/src/const.ts +++ b/packages/backend/src/const.ts @@ -16,13 +16,13 @@ export const USER_ACTIVE_THRESHOLD = 1000 * 60 * 60 * 24 * 3; // 3days * Content Warnings are included in this limit. * Surrogate pairs count as one */ -export const DB_MAX_NOTE_TEXT_LENGTH = 100_000; +export const DB_MAX_NOTE_TEXT_LENGTH = 100000; /** * Maximum image description length that can be stored in DB. * Surrogate pairs count as one */ -export const DB_MAX_IMAGE_COMMENT_LENGTH = 100_000; +export const DB_MAX_IMAGE_COMMENT_LENGTH = 100000; //#endregion // ブラウザで直接表示することを許可するファイルの種類のリスト |