fix: suppress profile picture warn, ensure release binary rebuilds

This commit is contained in:
Nikketryhard
2026-02-14 18:50:37 -06:00
parent e678ec655b
commit 89a8422291

View File

@@ -122,7 +122,13 @@ impl QuotaStore {
*self.inner.write().await = snapshot; *self.inner.write().await = snapshot;
} }
Ok((status, data)) => { 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) => { Err(e) => {
warn!("GetUserStatus poll failed: {e}"); warn!("GetUserStatus poll failed: {e}");