FIX: Load order of TopicTrackingState was off

This commit is contained in:
Robin Ward
2015-09-21 14:15:25 -04:00
parent 9f6ce653a9
commit b49e9fb174
4 changed files with 20 additions and 33 deletions

View File

@ -18,7 +18,7 @@ export default function() {
return (this._kvs);
}
if (type === "topic-tracking-state:main") {
this._tracker = this._tracker || TopicTrackingState.current();
this._tracker = this._tracker || TopicTrackingState.create();
return (this._tracker);
}
if (type === "site-settings:main") {