Skip to content

Commit

Permalink
Fix typo, in the sense of application-killing bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
osmarks committed May 30, 2024
1 parent 747058e commit e7adf73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clipfront2/src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@
<div class="result">
<a href={util.getURL(result)}>
{#if util.hasFormat(results, result, "VIDEO")}
<video controls poster={util.hasFormat("jpegh") ? util.thumbnailURL(results, result, "jpegh") : null} preload="metadata" on:loadstart={updateCounter} on:loadedmetadata={redrawGrid} on:loadeddata={redrawGrid}>
<video controls poster={util.hasFormat(results, result, "jpegh") ? util.thumbnailURL(results, result, "jpegh") : null} preload="metadata" on:loadstart={updateCounter} on:loadedmetadata={redrawGrid} on:loadeddata={redrawGrid}>
<source src={util.getURL(result)} />
</video>
{:else}
Expand Down

0 comments on commit e7adf73

Please sign in to comment.