mirror of https://github.com/status-im/codimd.git
Merge pull request #896 from maahl/default_img_upload_type
Upload images to the filesystem by default, rather than to imgur
This commit is contained in:
commit
262974dd3d
|
@ -139,7 +139,7 @@ if (config.sessionSecret === 'secret') {
|
|||
// Validate upload upload providers
|
||||
if (['filesystem', 's3', 'minio', 'imgur', 'azure'].indexOf(config.imageUploadType) === -1) {
|
||||
logger.error('"imageuploadtype" is not correctly set. Please use "filesystem", "s3", "minio", "azure" or "imgur". Defaulting to "imgur"')
|
||||
config.imageUploadType = 'imgur'
|
||||
config.imageUploadType = 'filesystem'
|
||||
}
|
||||
|
||||
// figure out mime types for image uploads
|
||||
|
|
Loading…
Reference in New Issue