Skip to content

Commit

Permalink
lodash-migrate: ignore false positives from restangular
Browse files Browse the repository at this point in the history
  • Loading branch information
cheapsteak committed Jan 5, 2017
1 parent 4ef2bc4 commit 284b8be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dcc-portal-ui/app/scripts/vendor.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Object.assign(_, _.pick(_4, [
var cache = new _4.memoize.Cache;
global.migrate({
log: (message) => {
if (!cache.has(message)) {
if (!cache.has(message) && !message.includes('getRestangularUrl')) {
cache.set(message, true);
console.trace(message);
}
Expand Down

0 comments on commit 284b8be

Please sign in to comment.