Some linter cleanup

This commit is contained in:
Gabe Kangas
2021-06-29 10:21:00 -07:00
parent ab3bbd59bf
commit 12104978e8
10 changed files with 19 additions and 19 deletions

View File

@@ -10,7 +10,7 @@ import (
// DatabaseFilePath is the path to the file ot be used as the global database for this run of the application.
var DatabaseFilePath = "data/owncast.db"
// LogDirectory is the path to various log files
// LogDirectory is the path to various log files.
var LogDirectory = "./data/logs"
// EnableDebugFeatures will print additional data to help in debugging.

View File

@@ -52,7 +52,7 @@ func VerifyFFMpegPath(path string) error {
versionString := "v" + strings.Split(fullVersionString, "-")[0]
// Some builds of ffmpeg have wierd build numbers that we can't parse
// Some builds of ffmpeg have weird build numbers that we can't parse
if !semver.IsValid(versionString) {
log.Debugf("unable to determine if ffmpeg version %s is recent enough. if you experience issues with video you may want to look into updating", fullVersionString)
return nil