Skip to content
This repository has been archived by the owner on Jan 29, 2024. It is now read-only.

Commit

Permalink
fix(service): remove invalid argument for promise.finally
Browse files Browse the repository at this point in the history
  • Loading branch information
knalli committed Jan 31, 2016
1 parent 112bb3d commit 2d72908
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/service/translate.js
Original file line number Diff line number Diff line change
Expand Up @@ -1083,7 +1083,7 @@ function $translate($STORAGE_KEY, $windowProvider, $translateSanitizationProvide
};
promiseResolved.displayName = 'promiseResolved';

promiseToWaitFor['finally'](promiseResolved, deferred.reject);
promiseToWaitFor['finally'](promiseResolved);
}
return deferred.promise;
};
Expand Down

0 comments on commit 2d72908

Please sign in to comment.