diff --git a/settings/js/apps.js b/settings/js/apps.js
index d2411197c9c..f8ad9c7918c 100644
--- a/settings/js/apps.js
+++ b/settings/js/apps.js
@@ -200,7 +200,7 @@ OC.Settings.Apps = OC.Settings.Apps || {
currentImage.onload = function() {
page.find('.app-image')
- .append(OC.Settings.Apps.imageUrl(app.preview))
+ .append(OC.Settings.Apps.imageUrl(app.preview, app.detailpage))
.fadeIn();
};
@@ -228,12 +228,18 @@ OC.Settings.Apps = OC.Settings.Apps || {
/**
* Returns the image for apps listing
+ * url : the url of the image
+ * appfromstore: bool to check whether the app is fetched from store or not.
*/
- imageUrl : function (url) {
+ imageUrl : function (url, appfromstore) {
var img = '';
+ if (appfromstore) {
+ img += '';
+ } else {
+ img += '';
+ img += '';
+ }
return img;
},