I have created an rss feed from google alerts that I am mapping into fields. I have had success mapping into all the fields except the link module field where I have put a field formatter that creates a pagepeeker screenshot by attaching the appropriate url server query to the feeds url. Feeds is doing its job by taking the Item URL (link) and putting it into the field correctly. I am having an issue with with either pagepeeker or link module because below keeps happening.

To recap-

Google Alert feed -> Link module field -> pagepeeker screenshot formatter

here's the error

The url that google alerts provides is

http://www.google.com/url?sa=X&q=http://www.beautyjunkiesunite.com/WP/20...

When the link is displayed I get :

http://pagepeeker.com/thumbs.php?size=m&url=www.google.com/url

Its cutting the url at url and not getting the rest of the url.

Here's the code that pagepeeker uses to parse the url ?

function _pagepeeker_format_url($url, $domain_only = FALSE) {
  if (filter_var($url, FILTER_VALIDATE_URL) === FALSE) {
    return FALSE;
  }

  // try to parse the url
  $parsed_url = parse_url($url);
  if (!empty($parsed_url)) {
    $host = (!empty($parsed_url['host'])) ? $parsed_url['host'] : '';
    $port = (!empty($parsed_url['port'])) ? ':' . $parsed_url['port'] : '';
    $path = (!empty($parsed_url['path'])) ? $parsed_url['path'] : '';
    $query = (!empty($parsed_url['query'])) ? '?' . $parsed_url['query'] : '';
    $fragment = (!empty($parsed_url['fragment'])) ? '#' . $parsed_url['fragment'] : '';

    if ($domain_only) {
      return $host . $port;
    }
    else {
      return $host . $port . $path . $query . $fragment;
    }
  }

  return FALSE;
}

Could this be the problem?

Please let me know I can clarify in any way.

What I need is for the entire url to get processed and not just the truncated one

Thanks !