diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2025-10-06 17:35:24 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2025-10-06 17:35:24 +0200 |
commit | 56fa3ca3db83627dbde9bd3a79da897c5a1cccb1 (patch) | |
tree | 04e6c361b99962683500c9db12a568309c3d3b6f /src/utils.cpp | |
parent | b6b840f6072e950f2ded719ae51badfba7566fa8 (diff) | |
download | dabmux-56fa3ca3db83627dbde9bd3a79da897c5a1cccb1.tar.gz dabmux-56fa3ca3db83627dbde9bd3a79da897c5a1cccb1.tar.bz2 dabmux-56fa3ca3db83627dbde9bd3a79da897c5a1cccb1.zip |
Add services other ensembles to linking hot-reloadnext
Diffstat (limited to 'src/utils.cpp')
-rw-r--r-- | src/utils.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/utils.cpp b/src/utils.cpp index fc4c864..63ad32c 100644 --- a/src/utils.cpp +++ b/src/utils.cpp @@ -369,11 +369,12 @@ static void printLinking(const shared_ptr<dabEnsemble>& ensemble) } etiLog.log(info, " Services in other ensembles"); - if (ensemble->service_other_ensemble.empty()) { + const auto service_other_ensemble = ensemble->get_service_other_ensemble(); + if (service_other_ensemble.empty()) { etiLog.level(info) << " None "; } - for (const auto& s_oe : ensemble->service_other_ensemble) { + for (const auto& s_oe : service_other_ensemble) { int oe = 1; for (const auto& local_service : ensemble->services) { |