Only show n/a if undefined

This commit is contained in:
Ruud
2013-10-26 15:12:54 +02:00
parent 550051b3f6
commit ce47429701

View File

@@ -381,7 +381,7 @@ MA.Release = new Class({
},
get: function(release, type){
return release.info[type] || 'n/a'
return release.info[type] !== undefined ? release.info[type] : 'n/a'
},
download: function(release){