1
1
Fork 0
mirror of https://tildegit.org/solderpunk/molly-brown synced 2024-04-28 00:35:00 +02:00

Fix small variable name error.

This commit is contained in:
Solderpunk 2023-02-27 08:35:11 +01:00
parent d3d415b612
commit 81b4f1dcc0

View File

@ -222,7 +222,7 @@ func parseMollyFiles(path string, docBase string, config UserConfig) UserConfig
continue
}
// If the file exists and we can read it, try to parse it
newConfig, err = readUserConfig(mollyPath, config, false)
config, err = readUserConfig(mollyPath, config, false)
if err != nil {
log.Println("Error parsing .molly file " + mollyPath + ": " + err.Error())
continue