RSSBean で asahi.com を読む方法

http://horneddragon.com/projects/rssbean/

--- RSSBean.js.orig     2005-07-30 20:09:07.000000000 +0900
+++ RSSBean.js  2005-07-29 13:41:29.000000000 +0900
@@ -502,8 +502,10 @@
         // whitespace (carriage return) text nodes 
         if (result.childNodes.length > 1) {
             return result.childNodes[1].nodeValue;
+        } else if (result.firstChild) {
+            return result.firstChild.nodeValue;
         } else {
-            return result.firstChild.nodeValue;    
+            return null;
         }
     } else {
         return "n/a";

作者の Xia Weipin さんには送ったので、そのうち反映されるかも。

追記

返信がきました。マージしてもらえるようです。