diff --git a/chirpstack/src/uplink/stats.rs b/chirpstack/src/uplink/stats.rs index 4ddfa32d..1f82f4a0 100644 --- a/chirpstack/src/uplink/stats.rs +++ b/chirpstack/src/uplink/stats.rs @@ -86,9 +86,11 @@ impl Stats { } } - gateway::partial_update(self.gateway_id, &gw_cs) - .await - .context("Update gateway state")?; + self.gateway = Some( + gateway::partial_update(self.gateway_id, &gw_cs) + .await + .context("Update gateway state")?, + ); Ok(()) }