changed to not localhost

This commit is contained in:
Abhinav Adduri 2017-06-08 13:55:19 -07:00
parent f870ab1ab8
commit 38449a23fb
1 changed files with 1 additions and 1 deletions

View File

@ -127,7 +127,7 @@ app.post('/upload/:id', (req, res, next) => {
req.busboy.on('file', (fieldname, file, filename) => {
log.info('Uploading:', req.params.id);
const protocol = conf.env === 'development' ? req.protocol : 'https';
const protocol = !notLocalHost ? req.protocol : 'https';
let url = `${protocol}://${req.get('host')}/download/${req.params.id}/`;
storage.set(req.params.id, file, filename, url).then(linkAndID => {