iobroker.bmw 2.7.1 → 2.7.2

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.
package/io-package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "bmw",
4
- "version": "2.7.1",
4
+ "version": "2.7.2",
5
5
  "news": {
6
- "2.7.1": {
6
+ "2.7.2": {
7
7
  "en": "Move Rate Limit messages to debug",
8
8
  "de": "Rate Limit Nachrichten in debug verschoben"
9
9
  },
package/main.js CHANGED
@@ -504,7 +504,10 @@ class Bmw extends utils.Adapter {
504
504
  return;
505
505
  }
506
506
  if (error.response && error.response.status === 403) {
507
- this.log.warn(error.response.data.message);
507
+ this.log.info(
508
+ "Quota Limit reaching. If the message appears frequently, reduce the interval or deactivate other software that accesses BMW data.",
509
+ );
510
+ this.log.info(error.response.data.message);
508
511
  return;
509
512
  }
510
513
  if (error.response && error.response.status >= 500) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker.bmw",
3
- "version": "2.7.1",
3
+ "version": "2.7.2",
4
4
  "description": "Adapter for BMW",
5
5
  "author": {
6
6
  "name": "TA2k",