diff --git a/addon/adapters/application.js b/addon/adapters/application.js index f1b096d..5a3dfff 100644 --- a/addon/adapters/application.js +++ b/addon/adapters/application.js @@ -128,7 +128,6 @@ export default Ember.Object.extend(FetchMixin, Evented, { // use resource's service if in container, otherwise use this service to fetch let owner = (typeof getOwner === 'function') ? getOwner(this) : this.container; let service = owner.lookup('service:' + pluralize(type)) || this; - url = this.fetchUrl(url); return service.fetch(url, { method: 'GET' }); },