1
0
mirror of https://github.com/Rudi9719/kbtui.git synced 2026-03-22 09:57:24 +00:00

Bugfix: Load displayed an error because of missing return statement

This commit is contained in:
2019-10-23 10:11:15 -04:00
parent 005d737fee
commit f04bf8e545

View File

@ -23,7 +23,6 @@ func printSetting(cmd []string) {
switch cmd[1] { switch cmd[1] {
case "load": case "load":
loadFromToml() loadFromToml()
printToView("Feed", fmt.Sprintf("Loading config from toml"))
case "downloadPath": case "downloadPath":
printToView("Feed", fmt.Sprintf("Setting for %s -> %s", cmd[1], downloadPath)) printToView("Feed", fmt.Sprintf("Setting for %s -> %s", cmd[1], downloadPath))
case "outputFormat": case "outputFormat":
@ -47,6 +46,7 @@ func cmdSet(cmd []string) {
} }
if len(cmd) < 3 { if len(cmd) < 3 {
printSetting(cmd) printSetting(cmd)
return
} }
switch cmd[1] { switch cmd[1] {
case "downloadPath": case "downloadPath":
@ -68,6 +68,7 @@ func cmdSet(cmd []string) {
} }
func loadFromToml() { func loadFromToml() {
printToView("Feed", fmt.Sprintf("Loading config from toml"))
config, err := toml.LoadFile("kbtui.tml") config, err := toml.LoadFile("kbtui.tml")
if err != nil { if err != nil {
printToView("Feed", fmt.Sprintf("Could not read config file: %+v", err)) printToView("Feed", fmt.Sprintf("Could not read config file: %+v", err))