diff options
| author | Zephyrrus <[email protected]> | 2021-01-05 00:25:53 +0200 |
|---|---|---|
| committer | Zephyrrus <[email protected]> | 2021-01-07 10:47:16 +0200 |
| commit | 53f5015c99b3040e955632525bde4ad70250af9a (patch) | |
| tree | e07e259351e7bfe2e9a07ac7bba4fab3db4ed736 /src/api/database/migrations/20201227023216_addUniques.js | |
| parent | fix: normalize url and thumbnail response (diff) | |
| download | host.fuwn.me-53f5015c99b3040e955632525bde4ad70250af9a.tar.xz host.fuwn.me-53f5015c99b3040e955632525bde4ad70250af9a.zip | |
feat: check for real mimetype using file-type
For now, if file-type returns undefined, we take the value from the browser. In the future this should be removed to ensure people can't bypass the real mime checking using a special file that can't be recognized by file-type.
Diffstat (limited to 'src/api/database/migrations/20201227023216_addUniques.js')
| -rw-r--r-- | src/api/database/migrations/20201227023216_addUniques.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/database/migrations/20201227023216_addUniques.js b/src/api/database/migrations/20201227023216_addUniques.js index 14f9e7f..d031991 100644 --- a/src/api/database/migrations/20201227023216_addUniques.js +++ b/src/api/database/migrations/20201227023216_addUniques.js @@ -28,6 +28,6 @@ exports.up = async knex => { table.unique(['fileId', 'tagId']); }); }; -exports.down = async knex => { +exports.down = async () => { // Nothing }; |