From fda05f22629156cc2eae130b501ebced2261ab42 Mon Sep 17 00:00:00 2001 From: Wim Date: Mon, 5 Sep 2022 21:00:54 +0200 Subject: Update dependencies and fix whatsmeow API changes (#1887) * Update dependencies * Fix whatsmau API changes --- vendor/github.com/gomarkdown/markdown/parser/caption.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vendor/github.com/gomarkdown/markdown/parser/caption.go') diff --git a/vendor/github.com/gomarkdown/markdown/parser/caption.go b/vendor/github.com/gomarkdown/markdown/parser/caption.go index 54d3f741..fe31711a 100644 --- a/vendor/github.com/gomarkdown/markdown/parser/caption.go +++ b/vendor/github.com/gomarkdown/markdown/parser/caption.go @@ -58,7 +58,7 @@ func captionID(data []byte) (string, int) { } // remains must be whitespace. for l := k + 1; l < end; l++ { - if !isSpace(data[l]) { + if !IsSpace(data[l]) { return "", 0 } } -- cgit v1.2.3