Merge pull request #2775 from riking/notification-hotfix

FIX: Broken notification history
This commit is contained in:
Sam 2014-09-10 10:26:31 +10:00
commit b2fe6f6cb2
1 changed files with 3 additions and 2 deletions

View File

@ -12,9 +12,10 @@ export default Ember.ArrayController.extend({
self.get('model.lastObject.created_at'),
self.get('user.username')).then(function(result) {
self.set('loading', false);
self.pushObjects(result);
var notifications = result.get('content');
self.pushObjects(notifications);
// Stop trying if it's the end
if (result.length === 0) {
if (notifications && notifications.length === 0) {
self.set('canLoadMore', false);
}
}).catch(function(error) {