Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@
core.AutoComplete = true
core.Output = JSON
}
if conf.Section(ini.DEFAULT_SECTION).HasKey("postrequest") {
if !conf.Section(ini.DEFAULT_SECTION).HasKey("postrequest") { {
core.PostRequest = false
}
cfg.Core = core
Expand Down Expand Up @@ -322,7 +322,7 @@
}

// LoadProfile loads an existing profile
func (c *Config) LoadProfile(name string) {

Check failure on line 325 in config/config.go

View workflow job for this annotation

GitHub Actions / build

missing ',' in argument list
Debug("Trying to load profile: " + name)
conf := readConfig(c)
section, err := conf.GetSection(name)
Expand Down
Loading