aboutsummaryrefslogtreecommitdiff
path: root/src/dav/encoder.rs
diff options
context:
space:
mode:
authorQuentin Dufour <quentin@deuxfleurs.fr>2024-03-06 16:09:20 +0100
committerQuentin Dufour <quentin@deuxfleurs.fr>2024-03-06 16:09:20 +0100
commit96a27d7b223d97675ba9388a6dea9514939ff502 (patch)
treed150078d63b17bca067f34135066bc0939106761 /src/dav/encoder.rs
parent05c952f0207fa40d5dc315933bd8fd34dd0cdd1c (diff)
downloadaerogramme-96a27d7b223d97675ba9388a6dea9514939ff502.tar.gz
aerogramme-96a27d7b223d97675ba9388a6dea9514939ff502.zip
Implement lockinfo
Diffstat (limited to 'src/dav/encoder.rs')
-rw-r--r--src/dav/encoder.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/dav/encoder.rs b/src/dav/encoder.rs
index f3a1860..ec937c6 100644
--- a/src/dav/encoder.rs
+++ b/src/dav/encoder.rs
@@ -527,6 +527,7 @@ impl QWrite for Owner {
match self {
Self::Txt(txt) => xml.q.write_event_async(Event::Text(BytesText::new(&txt))).await?,
Self::Href(href) => href.qwrite(xml).await?,
+ Self::Unknown => (),
}
xml.q.write_event_async(Event::End(end)).await
}