diff --git a/bridges/PinterestBridge.php b/bridges/PinterestBridge.php
index 3bb0530..7df03c8 100644
--- a/bridges/PinterestBridge.php
+++ b/bridges/PinterestBridge.php
@@ -51,7 +51,8 @@ class PinterestBridge extends BridgeAbstract{
$this->username = $param['u'];
$this->board = $param['b'];
- $html = file_get_html($this->getURI().'/'.urlencode($this->username).'/'.urlencode($this->board)) or $this->returnError('Could not request Pinterest.', 404);
+ $html = file_get_html($this->getURI().'/'.urlencode($this->username).'/'.urlencode($this->board)) or $this->returnError('Username and/or board not found', 404);
+
} else if (isset($param['q']))
{
$this->query = $param['q'];
@@ -76,13 +77,17 @@ class PinterestBridge extends BridgeAbstract{
if (isset($this->query))
{
- $avatar = $div->find('img.creditImg', 0);
- $username = $div->find('span.creditName', 0);
- $board = $div->find('span.creditTitle', 0);
+ $avatar = $div->find('div.creditImg', 0)->find('img', 0);
+ $avatar = $avatar->getAttribute('data-src');
+ $avatar = str_replace("\\", "", $avatar);
+
+
+ $username = $div->find('div.creditName', 0);
+ $board = $div->find('div.creditTitle', 0);
$item->username =$username->innertext;
$item->fullname = $board->innertext;
- $item->avatar = $avatar->getAttribute('src');
+ $item->avatar = $avatar;
$item->content .= '
'.$item->username.'';
$item->content .= '
'.$item->fullname;