FIX: If there are no featured topics in a category, don't fail.

This commit is contained in:
Robin Ward 2013-12-02 17:44:40 -05:00
parent 7bbb32bac2
commit bdac13b636

View File

@ -111,7 +111,10 @@ Discourse.Category = Discourse.Model.extend({
}.property(),
latestTopic: function(){
return this.get("topics")[0];
var topics = this.get('topics');
if (topics && topics.length) {
return topics[0]
}
}.property("topics"),
topicTrackingState: function(){