From 01d0741b5c77dc855e3ec6464df690ba29707429 Mon Sep 17 00:00:00 2001 From: Dominik Werder Date: Fri, 23 May 2025 16:20:27 +0200 Subject: [PATCH] Fix propagation --- src/api4/binned.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/api4/binned.rs b/src/api4/binned.rs index 6e2b8b9..ae13c20 100644 --- a/src/api4/binned.rs +++ b/src/api4/binned.rs @@ -498,6 +498,9 @@ impl AppendToUrl for BinnedQuery { if let Some(x) = self.datahub_bin_as_waveform.as_ref() { g.append_pair("private_datahub_bin_as_waveform", &x.to_string()); } + if let Some(x) = self.pbd_enable.as_ref() { + g.append_pair("pbd_enable", &x.to_string()); + } } }