diff --git a/src/rss.nim b/src/rss.nim index 08ef60c..b341703 100644 --- a/src/rss.nim +++ b/src/rss.nim @@ -58,9 +58,9 @@ proc mixRssFeeds*( # if the IDE screams at you here, ignore it item.pubdate = some(parse(item.pubDate.get(), feed.timeFormat).format(atomTimeFormat)) - if item.updated.isSome(): - item.updated = - some(parse(item.updated.get(), feed.timeFormat).format(atomTimeFormat)) + if item.updated.isSome(): + item.updated = + some(parse(item.updated.get(), feed.timeFormat).format(atomTimeFormat)) item )