Fixed text posts not passing streams correctly since previous change.

This commit is contained in:
ThePendulum 2018-04-26 04:53:56 +02:00
parent 80829e52af
commit 9e9ed9de07
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ module.exports = function(posts, user) {
return Promise.resolve().then(() => {
return fs.ensureDir(path.dirname(filepath));
}).then(() => {
return save(filepath, item.streams, item);
return save(filepath, item.streams || item.stream, item);
}).then(sourcePaths => {
if(item.mux) {
return mux(filepath, sourcePaths, item);