From 3e8063c2c7e3098374c9c72c56a85c96b95dcd66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=98=B8=EF=B8=8F?= <29265684+buffermet@users.noreply.github.com> Date: Thu, 5 Dec 2024 12:52:27 +0100 Subject: [PATCH] misc --- js/data.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/data.go b/js/data.go index b9d7812e..42afaee4 100644 --- a/js/data.go +++ b/js/data.go @@ -63,7 +63,7 @@ func gzipCompress(call otto.FunctionCall) otto.Value { arg := argv[0] if (!arg.IsString()) { - return ReportError("btoa: single argument must be a string.") + return ReportError("gzipCompress: single argument must be a string.") } uncompressedBytes := []byte(arg.String())