[api] Use pointer to FixedVector for siren tones field (#12657)

This commit is contained in:
J. Nick Koston
2026-01-02 14:09:40 -10:00
committed by GitHub
parent f394cf3f4d
commit 0b7ff09657
4 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -1579,7 +1579,7 @@ void ListEntitiesSirenResponse::dump_to(std::string &out) const {
dump_field(out, "icon", this->icon_ref_);
#endif
dump_field(out, "disabled_by_default", this->disabled_by_default);
for (const auto &it : this->tones) {
for (const auto &it : *this->tones) {
dump_field(out, "tones", it, 4);
}
dump_field(out, "supports_duration", this->supports_duration);