summaryrefslogtreecommitdiff
path: root/rss/rss_09x_parser.cpp
diff options
context:
space:
mode:
authorGravatar Andreas Krennmair <ak@synflood.at> 2009-06-19 22:20:51 +0200
committerGravatar Andreas Krennmair <ak@synflood.at> 2009-06-19 22:20:51 +0200
commitefa19ce2c4b7ec46a67f4163934a7ee620f7f814 (patch)
treec3c0d8b07f3b3f2617ee7a5a43f9e84a513e1bb2 /rss/rss_09x_parser.cpp
parent39378dcb9c851925d9f8f2696057cabcbe994f50 (diff)
downloadnewsboat-efa19ce2c4b7ec46a67f4163934a7ee620f7f814.tar.gz
newsboat-efa19ce2c4b7ec46a67f4163934a7ee620f7f814.tar.zst
newsboat-efa19ce2c4b7ec46a67f4163934a7ee620f7f814.zip
fixed issue #149.
Diffstat (limited to '')
-rw-r--r--rss/rss_09x_parser.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/rss/rss_09x_parser.cpp b/rss/rss_09x_parser.cpp
index 1a18630d..69d7f64d 100644
--- a/rss/rss_09x_parser.cpp
+++ b/rss/rss_09x_parser.cpp
@@ -73,6 +73,7 @@ item rss_09x_parser::parse_item(xmlNode * itemNode) {
it.author = authorfield.substr(start+1, end-start);
} else {
it.author_email = authorfield;
+ it.author = authorfield;
}
} else if (node_is(node, "creator", DC_URI)) {
author = get_content(node);