From dfebc9013b5414e9a3c5f940704e831c31ce35d2 Mon Sep 17 00:00:00 2001 From: tjp Date: Sun, 14 Jan 2024 19:54:15 -0700 Subject: fixes --- command.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'command.go') diff --git a/command.go b/command.go index d994866..db0c6a2 100644 --- a/command.go +++ b/command.go @@ -383,13 +383,13 @@ func RunCommand(conf *Config, cmd *Command, state *BrowserState) error { if len(cmd.Args) == 1 { num, _ = strconv.Atoi(cmd.Args[0]) } - return Back(state, num) + return Back(state, conf, num) case "forward": num := 1 if len(cmd.Args) == 1 { num, _ = strconv.Atoi(cmd.Args[0]) } - return Forward(state, num) + return Forward(state, conf, num) case "next": return Next(state, conf) case "previous": -- cgit v1.2.3