diff --git a/src/components/SourceOverlay.jsx b/src/components/SourceOverlay.jsx
index fbf55d4..e29be26 100644
--- a/src/components/SourceOverlay.jsx
+++ b/src/components/SourceOverlay.jsx
@@ -26,13 +26,17 @@ class SourceOverlay extends React.Component {
renderPhoto() {
const imageExts = ['.jpg', '.png']
- const possibleUrls = imageExts.map(ext => `${this.props.source.path}${ext}`)
+ const extraUrls = imageExts.map(ext => `${this.props.source.path}${ext}`)
+ const possibleUrls = [ this.props.source.path, ...extraUrls ]
return (
- }
- unloader={