Fixed text posts not passing streams correctly since previous change.

This commit is contained in:
2018-04-26 04:53:56 +02:00
parent 80829e52af
commit 9e9ed9de07

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);