diff --git a/client.go b/client.go index 2693ad0..f106f8b 100644 --- a/client.go +++ b/client.go @@ -414,7 +414,7 @@ func (c *client) doCommandAs(action string, values []string) { c.SetMessage("Cannot set READ ONLY setting 'configlocation'", true) c.DrawMessage() return - } + } err := saveConfig() if err != nil { c.SetMessage("Value set, but error saving config to file", true) @@ -483,20 +483,6 @@ func (c *client) doLinkCommandAs(action, target string, values []string) { } } -func (c *client) getCurrentPageUrl() (string, error) { - if c.PageState.Length < 1 { - return "", fmt.Errorf("There are no pages in history") - } - return c.PageState.History[c.PageState.Position].Location.Full, nil -} - -func (c *client) getCurrentPageRawData() (string, error) { - if c.PageState.Length < 1 { - return "", fmt.Errorf("There are no pages in history") - } - return c.PageState.History[c.PageState.Position].RawContent, nil -} - func (c *client) saveFile(u Url, name string) { var file []byte var err error