diff --git a/src/common/utilities.js b/src/common/utilities.js index d32e343..a868dd5 100644 --- a/src/common/utilities.js +++ b/src/common/utilities.js @@ -140,7 +140,7 @@ export function typeForPath (path) { let type path = path.trim() switch (true) { - case /\.((png)|(jpg))$/.test(path): + case /\.((png)|(jpg)|(jpeg))$/.test(path): type = 'Image'; break case /\.(mp4)$/.test(path): type = 'Video'; break