Compare commits

...

2 Commits

1 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@
$embedMissing = null;
if (preg_match("/\[\[([^\]]+)\]\]/", $checkin->note, $filepath)) {
if (preg_match("/\.webm/", $filepath[1])) {
$hasEmbed = 'video';
$hasEmbed = 'videos';
$trip_slug = preg_replace( '/[^A-Za-z0-9-]+/', '-', strtolower( $trip->name ) );
if (file_exists(public_path() . "/" . $trip_slug . "/" . $hasEmbed . "/" . $filepath[1])) {
$path = "/" . $trip_slug . "/" .$hasEmbed . "/" . $filepath[1];
@ -49,7 +49,7 @@
<span class="checkin-icon">🖼️</span>
@endif
@if($hasEmbed)
@if($hasEmbed === 'video')
@if($hasEmbed === 'videos')
<span class="checkin-icon @if($embedMissing) checkin-icon--missing @endif">&#128249;</span>
@endif
@if($hasEmbed === 'audio')