diff --git a/public_html/js/Presenters/PostUploadPresenter.js b/public_html/js/Presenters/PostUploadPresenter.js
index b783599c..f6c09257 100644
--- a/public_html/js/Presenters/PostUploadPresenter.js
+++ b/public_html/js/Presenters/PostUploadPresenter.js
@@ -342,9 +342,9 @@ App.Presenters.PostUploadPresenter = function(
}
$el.find('.form-slider .thumbnail a').attr(
'href',
- post.file !== null ?
- URL.createObjectURL(post.file)
- : thumbnailDataURL);
+ post.url !== null ?
+ thumbnailDataURL :
+ URL.createObjectURL(post.file));
});
}