From c5e4597daab6982c8c53961ffc2296cdf91561b7 Mon Sep 17 00:00:00 2001 From: kim Date: Mon, 10 Mar 2025 14:10:06 +0000 Subject: [PATCH] whoops don't return a reason string for arm64, since it should always be supported --- internal/media/ffmpeg/wasm.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/media/ffmpeg/wasm.go b/internal/media/ffmpeg/wasm.go index 8746af6ee..51735bec1 100644 --- a/internal/media/ffmpeg/wasm.go +++ b/internal/media/ffmpeg/wasm.go @@ -150,7 +150,7 @@ func compilerSupported() (string, bool) { // later update go-ffmpreg to a version that makes // use of threads, i.e. v7.x.x. in that case we would // need to check for cpu.ARM64.HasATOMICS. - return "arm64 LSE/atomics required", true + return "", true default: return "unsupported ARCH", false }