Skip to content

Commit

Permalink
Fix fmt.
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeSmithStarkers committed Aug 12, 2020
1 parent 67d4fd5 commit 2d2b62c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/manager/generator_preview.go
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ func (g *PreviewGenerator) generateVideo(encoder *ffmpeg.Encoder, fallback bool)
}

videoOutputPath := filepath.Join(g.OutputDirectory, g.VideoFilename)
if err := encoder.ScenePreviewVideoChunkCombine(g.Info.VideoFile, g.getConcatFilePath(), videoOutputPath) ; err != nil {
if err := encoder.ScenePreviewVideoChunkCombine(g.Info.VideoFile, g.getConcatFilePath(), videoOutputPath); err != nil {
return err
}
logger.Debug("created video preview: ", videoOutputPath)
Expand Down

0 comments on commit 2d2b62c

Please sign in to comment.