From 3dc60a428434f416639e4435788f9f32c82470db Mon Sep 17 00:00:00 2001 From: yory8 <> Date: Mon, 28 Oct 2019 07:40:33 +0100 Subject: [PATCH] fix build --- main.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/main.go b/main.go index 9ac9731..ec4c578 100644 --- a/main.go +++ b/main.go @@ -112,9 +112,7 @@ func main() { if selection == history[len(history)-1] { // wl-copy is still serving the copy, so replace with next latest // note: we alread exited if less than 2 items - if err := serveTxt(history[len(history)-2]); err != nil { - log.Fatal(err) - } + serveTxt(history[len(history)-2]) } if err := write(filter(history, selection), histfile); err != nil {