Skip to content

Commit

Permalink
Merge branch 'master' of github.com:mayeaux/nodetube into rss-feeds
Browse files Browse the repository at this point in the history
  • Loading branch information
ralyodio committed Feb 1, 2020
2 parents 56b04cb + 2926a8e commit cc244ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion controllers/backend/uploading.js
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ exports.postFileUpload = async(req, res) => {
const userIsRestricted = testIfUserRestricted(user, logObject, res);
if(userIsRestricted){ return; }

const uploadAlreadyUploaded = checkIfAlreadyUploaded(user, title, logObject, res);
const uploadAlreadyUploaded = await checkIfAlreadyUploaded(user, title, logObject, res);
if(uploadAlreadyUploaded){ return; }

// let upload = setUpload()
Expand Down

0 comments on commit cc244ac

Please sign in to comment.