Fix preg_match

This commit is contained in:
Ben Goldsworthy 2022-11-28 14:32:42 -06:00
parent ede920ed45
commit 64fc3e9586

View file

@ -6,13 +6,13 @@
<p class="checkin__meta">{!! render_date_difference($checkin->date) !!}</p>
</summary>
@if($checkin->note)
@if(preg_match("/\[\[[^\]]+\]\]/", $checkin->note, $filepath)
@if(preg_match("/\.webm/", $filepath)
@if(preg_match("/\[\[[^\]]+\]\]/", $checkin->note, $filepath))
@if(preg_match("/\.webm/", $filepath))
<video controls>
<source src="/{{ $filepath }}" type="video/webm">
<p>Your browser doesn't support HTML video. Here is a <a href="/{{ $filepath }}">link to the video</a> instead.</p>
</video>
@elseif(preg_match("/\.ogg/", $filepath)
@elseif(preg_match("/\.ogg/", $filepath))
<audio controls>
<source src="/{{ $filepath }}" type="audio/off">
<p>Download <a href="/{{ $filepath }}">OGG</a> audio.</p>