summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick White <git@njw.name>2019-11-12 14:47:19 +0000
committerNick White <git@njw.name>2019-11-12 14:47:19 +0000
commit45be1133c2883d3a8ed8bc0a888ea841fc727fc1 (patch)
treee0d812289a8b25174cad54a8a28508e776e7ddee
parentb0c8d63aa4c48cd2b13ef1805b41738ac69fb0e0 (diff)
Fix sleep in unstickocr
-rw-r--r--cmd/unstickocr/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/unstickocr/main.go b/cmd/unstickocr/main.go
index 2b0bb24..27f3c0d 100644
--- a/cmd/unstickocr/main.go
+++ b/cmd/unstickocr/main.go
@@ -100,7 +100,7 @@ func main() {
break
}
log.Println("No message found yet, sleeping for 30 seconds to try again")
- time.Sleep(30)
+ time.Sleep(30 * time.Minute)
}
if done == true {