diff -upr modules.orig/feedapi_scraper/feedapi_scraper.module modules/feedapi_scraper/feedapi_scraper.module
--- modules.orig/feedapi_scraper/feedapi_scraper.module	2009-05-17 10:53:18.000000000 -0700
+++ modules/feedapi_scraper/feedapi_scraper.module	2009-06-28 07:47:59.000000000 -0700
@@ -682,6 +682,12 @@ function _feedapi_scraper_xpath_parser($
 function _feedapi_scraper_regex_parser($expression, $raw) {
   $matches = array();
   if(preg_match_all($expression, $raw, $matches) && isset($matches[0])) {
+
+    // Quick fix to clean up stripped HTML in feed fields
+    $replace = str_replace('amp;', '&amp;', $matches[1][0], $count);  
+    if ($count > 0) {
+      $matches[1][0] = html_entity_decode($replace);
+    }
       return $matches[1][0];
   }
   return '';
