Fix setting gateway after 0cd5dd8d313481922faab0a960bf69093c79a474.

This commit is contained in:
Orne Brocaar 2024-03-19 14:00:47 +00:00
parent 56336fa685
commit 5a865c924c

View File

@ -86,9 +86,11 @@ impl Stats {
} }
} }
gateway::partial_update(self.gateway_id, &gw_cs) self.gateway = Some(
.await gateway::partial_update(self.gateway_id, &gw_cs)
.context("Update gateway state")?; .await
.context("Update gateway state")?,
);
Ok(()) Ok(())
} }