fix: use embed=true for serde bool compat
Some checks failed
CI / Check / Test (push) Failing after 6m35s

This commit is contained in:
2026-06-03 10:17:43 +02:00
parent c798b851dc
commit 004243dcbb
3 changed files with 6 additions and 6 deletions

View File

@@ -258,7 +258,7 @@ impl<'a> EmbedProfileTemplate<'a> {
let parts = [
format!("view={}", self.view),
format!("sort_by={}", self.sort_by),
"embed=1".to_string(),
"embed=true".to_string(),
];
format!("&{}", parts.join("&"))
}