diff options
| author | tamaina <tamaina@hotmail.co.jp> | 2024-02-13 15:59:27 +0000 |
|---|---|---|
| committer | tamaina <tamaina@hotmail.co.jp> | 2024-02-13 15:59:27 +0000 |
| commit | c1514ce91dc08481a092a789ee37da546cdb4583 (patch) | |
| tree | c66b42cd474f8e1d5cc7d9a669e4e535b3be9b6e /packages/backend/src/misc/correct-filename.ts | |
| parent | Revert "update SPDX-FileCopyrightText" (diff) | |
| download | misskey-c1514ce91dc08481a092a789ee37da546cdb4583.tar.gz misskey-c1514ce91dc08481a092a789ee37da546cdb4583.tar.bz2 misskey-c1514ce91dc08481a092a789ee37da546cdb4583.zip | |
(re) update SPDX-FileCopyrightText
Fix #13290
Diffstat (limited to 'packages/backend/src/misc/correct-filename.ts')
| -rw-r--r-- | packages/backend/src/misc/correct-filename.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/backend/src/misc/correct-filename.ts b/packages/backend/src/misc/correct-filename.ts index 9130af44c3..f7ee02781d 100644 --- a/packages/backend/src/misc/correct-filename.ts +++ b/packages/backend/src/misc/correct-filename.ts @@ -1,5 +1,5 @@ /* - * SPDX-FileCopyrightText: syuilo and other misskey contributors + * SPDX-FileCopyrightText: syuilo and misskey-project * SPDX-License-Identifier: AGPL-3.0-only */ @@ -21,7 +21,7 @@ const extRegExp = /\.[0-9a-zA-Z]+$/i; /** * 与えられた拡張子とファイル名が一致しているかどうかを確認し、 * 一致していない場合は拡張子を付与して返す - * + * * extはfile-typeのextを想定 */ export function correctFilename(filename: string, ext: string | null) { |