From 89a842229115463376454ad397f6cce5198a3aee Mon Sep 17 00:00:00 2001 From: Nikketryhard Date: Sat, 14 Feb 2026 18:50:37 -0600 Subject: [PATCH] fix: suppress profile picture warn, ensure release binary rebuilds --- src/quota.rs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/quota.rs b/src/quota.rs index dfc31a2..686a34a 100644 --- a/src/quota.rs +++ b/src/quota.rs @@ -122,7 +122,13 @@ impl QuotaStore { *self.inner.write().await = snapshot; } Ok((status, data)) => { - warn!("GetUserStatus returned {status}: {data}"); + // Profile picture fetch fails through iptables — harmless, suppress + let data_str = data.to_string(); + if data_str.contains("profile picture") { + tracing::debug!("GetUserStatus: profile picture fetch failed (expected with iptables)"); + } else { + warn!("GetUserStatus returned {status}: {data_str}"); + } } Err(e) => { warn!("GetUserStatus poll failed: {e}");