1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-10-06 08:07:20 +02:00

return promise for EpisodeModel syncing

This commit is contained in:
Mark McDowall 2014-01-29 22:18:37 -08:00
parent 28aee91d3f
commit 47f12b429e

View File

@ -19,7 +19,7 @@ define(
options = options || {};
options.url = model.methodUrls[method.toLowerCase()];
}
Backbone.sync(method, model, options);
return Backbone.sync(method, model, options);
}
});
});