@ -389,8 +389,6 @@ export default () => {
const isObj = result && result.constructor === Object;
if ((result && result.length) || isObj) {
this.clear();
// If the result is an object I consider it the wrapper
if (isObj) {
this.getWrapper().set(result);
@ -508,7 +508,9 @@ export default Backbone.Model.extend({
*/
load(clb = null) {
this.getCacheLoad(1, res => {
this.get('storables').forEach(module => module.load(res));
const storables = this.get('storables');
storables.forEach(module => module.clear && module.clear());
storables.forEach(module => module.load(res));
clb && clb(res);
});
},