From 5c6a5c64b56cae6b10243229799dc66a4d7c20bc Mon Sep 17 00:00:00 2001 From: Julien Neuhart Date: Thu, 4 Jun 2026 18:37:06 +0200 Subject: [PATCH] fix(libreoffice): correct ErrRuntimeException message --- pkg/modules/libreoffice/api/api.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/modules/libreoffice/api/api.go b/pkg/modules/libreoffice/api/api.go index d39d232..99ef93f 100644 --- a/pkg/modules/libreoffice/api/api.go +++ b/pkg/modules/libreoffice/api/api.go @@ -36,7 +36,7 @@ var ( ErrUnoException = errors.New("uno exception") // ErrRuntimeException happens when unoconverter returns exit code 6. - ErrRuntimeException = errors.New("uno exception") + ErrRuntimeException = errors.New("runtime exception") // ErrCoreDumped happens randomly; sometimes a conversion will work as // expected, and some other time the same conversion will fail.