From ead5d38d7ca66fcaf72897747f7cfc97dd5a1146 Mon Sep 17 00:00:00 2001 From: Gmer4Lfe Date: Mon, 17 Aug 2026 11:42:32 -0400 Subject: [PATCH] =?UTF-8?q?Hide=20the=20seed=20strip=20on=20the=20mirror?= =?UTF-8?q?=20=E2=80=94=20it=20describes=20a=20push=20the=20mirror=20canno?= =?UTF-8?q?t=20make?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Plugin/unraid/pages/partnership.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Plugin/unraid/pages/partnership.php b/Plugin/unraid/pages/partnership.php index 53d24c7..b925036 100644 --- a/Plugin/unraid/pages/partnership.php +++ b/Plugin/unraid/pages/partnership.php @@ -1184,8 +1184,10 @@ function _renderActions(nodes, cfg) { // // The toggle is also read before the job record. media_seed.sh exits 0 when seeding is // off, so the record can read "ok" for a run that moved nothing. + // Owner-side only. The seed pushes THIS host's DAILY_SYNC_SHARES to the partner, so on + // the mirror the whole strip describes an action it cannot take against its own owner. const ms = remote.media_seed || {}; - if (ms.enabled !== false) { + if (isOwner && ms.enabled !== false) { const seedRunning = ms.status === 'running'; const seedDone = ms.phase3_done === true; let seedColor, seedLabel;