Merge pull request #3778 from riking/patch-10
Store nothing if anon cta is disabled
This commit is contained in:
commit
b0f0a9e750
|
@ -137,7 +137,7 @@ const ScreenTrack = Ember.Object.extend({
|
||||||
controller.readPosts(topicId, postNumbers);
|
controller.readPosts(topicId, postNumbers);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
} else {
|
} else if (this.get('anonFlushCallback')) {
|
||||||
// Anonymous viewer - save to localStorage
|
// Anonymous viewer - save to localStorage
|
||||||
const storage = this.get('keyValueStore');
|
const storage = this.get('keyValueStore');
|
||||||
|
|
||||||
|
@ -158,9 +158,7 @@ const ScreenTrack = Ember.Object.extend({
|
||||||
}
|
}
|
||||||
|
|
||||||
// Inform the observer
|
// Inform the observer
|
||||||
if (this.get('anonFlushCallback')) {
|
this.get('anonFlushCallback')();
|
||||||
this.get('anonFlushCallback')();
|
|
||||||
}
|
|
||||||
|
|
||||||
// No need to call controller.readPosts()
|
// No need to call controller.readPosts()
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue