From 7c87d1d5bd73528f47a0c99b930248dcf94c8a30 Mon Sep 17 00:00:00 2001 From: marmei <43099631+mar-mei@users.noreply.github.com> Date: Fri, 27 Sep 2019 22:20:19 +0200 Subject: [PATCH] Wrong CVLC path --- src/system.go | 4 ++-- xteve.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/system.go b/src/system.go index 1d8162e..ba95255 100644 --- a/src/system.go +++ b/src/system.go @@ -165,8 +165,8 @@ func loadSettings() (settings SettingsStrcut, err error) { settings.FFmpegPath = searchFileInOS("ffmpeg") } - if len(settings.FFmpegPath) == 0 { - settings.FFmpegPath = searchFileInOS("cvlc") + if len(settings.VLCPath) == 0 { + settings.VLCPath = searchFileInOS("cvlc") } settings.Version = System.DBVersion diff --git a/xteve.go b/xteve.go index 9fd925a..d82e026 100644 --- a/xteve.go +++ b/xteve.go @@ -39,7 +39,7 @@ var GitHub = GitHubStruct{Branch: "master", User: "xteve-project", Repo: "xTeVe- const Name = "xTeVe" // Version : Version, die Build Nummer wird in der main func geparst. -const Version = "2.0.3.0035" +const Version = "2.0.3.0036" // DBVersion : Datanbank Version const DBVersion = "2.1.0"