Fix parsing again.

This commit is contained in:
Daniel Kraus
2015-12-01 17:02:31 +01:00
parent 84e298e9ad
commit 4479efc196
3 changed files with 6 additions and 1 deletions

View File

@ -155,6 +155,10 @@ namespace zaaReloaded2.Medication
{
s += "-" + Night;
}
if (!String.IsNullOrEmpty(Comment))
{
s += " " + Comment.Trim();
}
return s;
}