fix: suppress profile picture warn, ensure release binary rebuilds
This commit is contained in:
@@ -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}");
|
||||
|
||||
Reference in New Issue
Block a user