From 37eb057d64476f12eae1ce315e38b79fcbcc1b61 Mon Sep 17 00:00:00 2001 From: Corey Farwell Date: Thu, 23 Apr 2015 22:26:01 -0400 Subject: [PATCH] Save upon export --- src/lib.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index b2cbc3ffbf..3f7a9ee6df 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -187,6 +187,11 @@ impl ViaXml for Channel { channel.tag_with_optional_text("ttl", &self.ttl); channel.tag_with_optional_text("image", &self.image); channel.tag_with_optional_text("rating", &self.rating); + + if let Some(ref text_input) = self.text_input { + channel.tag(text_input.to_xml()); + } + channel.tag_with_optional_text("skipHours", &self.skip_hours); channel.tag_with_optional_text("skipDays", &self.skip_days);