Store nothing if anon cta is disabled

This commit is contained in:
Kane York 2015-09-16 16:32:15 -07:00
parent e16eebb48c
commit 4e587eb68f
1 changed files with 2 additions and 4 deletions

View File

@ -137,7 +137,7 @@ const ScreenTrack = Ember.Object.extend({
controller.readPosts(topicId, postNumbers);
}
});
} else {
} else if (this.get('anonFlushCallback')) {
// Anonymous viewer - save to localStorage
const storage = this.get('keyValueStore');
@ -158,9 +158,7 @@ const ScreenTrack = Ember.Object.extend({
}
// Inform the observer
if (this.get('anonFlushCallback')) {
this.get('anonFlushCallback')();
}
this.get('anonFlushCallback')();
// No need to call controller.readPosts()
}