@osovitny/anatoly 3.20.6 → 3.20.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2621,7 +2621,9 @@ class AnatolyHttpInterceptor {
2621
2621
  }
2622
2622
  else {
2623
2623
  for (var i = 0; i < this.authorizationTokenExceptions.length; i++) {
2624
- if (url.indexOf(this.authorizationTokenExceptions[i]) >= 0) {
2624
+ let u = url.toLowerCase();
2625
+ let e = this.authorizationTokenExceptions[i].toLowerCase();
2626
+ if (u.indexOf(e) >= 0) {
2625
2627
  authorizationTokenRequired = false;
2626
2628
  break;
2627
2629
  }