Fix for missing storyboards in dev mode

This commit is contained in:
Luca 2020-08-26 21:52:12 +02:00
parent fa3ac5638d
commit e1f484d9b8
1 changed files with 4 additions and 1 deletions

View File

@ -653,11 +653,14 @@ export default Vue.extend({
if (this.isDev) {
fileLocation = `storyboards/${this.videoId}.vtt`
uriSchema = fileLocation
// if the location does not exist, writeFileSync will not create the directory, so we have to do that manually
if (!fs.existsSync('storyboards/')) {
fs.mkdirSync('storyboards/')
}
} else {
fileLocation = `${userData}/storyboards/${this.videoId}.vtt`
uriSchema = `file://${fileLocation}`
}
fs.writeFileSync(fileLocation, results)
this.videoStoryboardSrc = uriSchema