Skip to content
Snippets Groups Projects
Commit 845567f1 authored by Robb Lewis's avatar Robb Lewis
Browse files

Use https for image embeds

parent 3f8aa2ee
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -16,7 +16,7 @@
@foreach ($tweet->photos() as $photo)
 
<a class="pull-left" href="{!! $photo['url'] !!}">
<img class="media-object" src="{!!$photo['thumb'] !!}" width="75" height="75">
<img class="media-object" src="{!! str_replace('http://', 'https://', $photo['thumb']) !!}" width="75" height="75">
</a>
 
@endforeach
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment