From 9426b0b4d47951ae286efbac781f589afd12c296 Mon Sep 17 00:00:00 2001 From: kim Date: Sun, 13 Oct 2024 22:39:03 +0100 Subject: [PATCH] updated experimental support message --- internal/media/ffmpeg/exec_nowasm.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/internal/media/ffmpeg/exec_nowasm.go b/internal/media/ffmpeg/exec_nowasm.go index a6f782ff3..140cec5bc 100644 --- a/internal/media/ffmpeg/exec_nowasm.go +++ b/internal/media/ffmpeg/exec_nowasm.go @@ -33,7 +33,8 @@ import ( func init() { fmt.Println("!! you are using an unsupported build configuration of gotosocial with WebAssembly disabled !!") - fmt.Println("!! please do not file bug reports, this build configuration is provided as a nice-to-have !!") + fmt.Println("!! please do not file bug reports regarding media processing with this configuration !!") + fmt.Println("!! it is also less secure; this does not enforce version checks on ffmpeg / ffprobe versions !!") } // runCmd will run 'name' with the given arguments, returning exit code or error.