Skip to content

Commit

Permalink
Change in the XML output
Browse files Browse the repository at this point in the history
The older version generated "name of the book" from "author". The new version reads "name of the book" by "author"
  • Loading branch information
aidik committed Jun 5, 2014
1 parent 0278f70 commit 98a45e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AudioBook2Podcast/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ private void podcast()
podcast.WriteLine(" <title>" + titulek + "</title>");
podcast.WriteLine(" <link>" + adresa + aport + "/" + Uri.EscapeDataString(f.ToString()) + "</link>");
podcast.WriteLine(" <comments>http://www.aidik.com/</comments>");
podcast.WriteLine(" <description>" + cislo.ToString() + ". part of book " + args[1] + " from " + args[6] + ".</description>");
podcast.WriteLine(" <description>" + cislo.ToString() + ". part of book " + args[1] + " by " + args[6] + ".</description>");
podcast.WriteLine(" <pubDate>" + gooddate + "</pubDate>");
podcast.WriteLine(" <guid>" + adresa + aport + "/" + Uri.EscapeDataString(f.ToString()) + "</guid>");
podcast.WriteLine(" <author>" + args[6] + "</author>");
Expand Down

0 comments on commit 98a45e3

Please sign in to comment.