Skip to content

Commit 9e8d3a8

Browse files
author
Diego Hernandes
committed
gravatar error
1 parent 09899e4 commit 9e8d3a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/Lio/Accounts/UserPresenter.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public function profileUrl()
3030
public function thumbnail()
3131
{
3232
if (substr($this->image, 0, 10) == 'https://gr') {
33-
return HTML::image($this->image_url . "&size=50", $this->resource->name);
33+
return HTML::image($this->image_url, $this->resource->name);
3434
} else {
3535
return HTML::image($this->image_url . "?size=50", $this->resource->name);
3636
}
@@ -40,7 +40,7 @@ public function thumbnail()
4040
public function imageMedium()
4141
{
4242
if (substr($this->image, 0, 10) == 'https://gr') {
43-
return HTML::image($this->image_url . "&size=300", $this->resource->name);
43+
return HTML::image($this->image_url, $this->resource->name);
4444
} else {
4545
return HTML::image($this->image_url . "?size=300", $this->resource->name);
4646
}

0 commit comments

Comments
 (0)