From 3715fe9b72cf6d3e1d881cd2750f0474212a0605 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zolt=C3=A1n=20Papp?= Date: Wed, 17 Jun 2026 12:35:44 +0200 Subject: [PATCH] ui: fix FreeBSD build by matching tray_theme_other build tags to tray.go tray_theme_other.go references Tray but its build tag selected it on FreeBSD, where tray.go (which defines Tray) is excluded via !freebsd. Add the same !android && !ios && !freebsd && !js exclusions to the stub. --- client/ui/tray_theme_other.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/ui/tray_theme_other.go b/client/ui/tray_theme_other.go index 1ff7581ff..3f85e1603 100644 --- a/client/ui/tray_theme_other.go +++ b/client/ui/tray_theme_other.go @@ -1,4 +1,4 @@ -//go:build !linux || (linux && 386) +//go:build (!linux || (linux && 386)) && !android && !ios && !freebsd && !js package main