Skip to content

Commit

Permalink
3.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Hombach authored and Hombach committed Jun 21, 2024
1 parent 0cb41b7 commit e0772f1
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 4 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ If you enjoyed this project — or just feeling generous, consider buying me a b
### 3.3.2 (2024-06-21)

- (HombachC) fix 2 security issues in dependencies
- (HombachC) fix sentry notified possible error

### 3.3.1 (2024-06-13)

Expand Down
2 changes: 1 addition & 1 deletion build/lib/tibberCalculator.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build/lib/tibberCalculator.js.map

Large diffs are not rendered by default.

12 changes: 11 additions & 1 deletion io-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,17 @@
"version": "3.3.2",
"news": {
"3.3.2": {
"en": "fix 2 security issues in dependencies"
"en": "fix 2 security issues in dependencies\nfix Sentry-notified possible error",
"de": "2 Sicherheitsprobleme in Abhängigkeiten behoben\nvon Sentry gemeldeten möglichen Fehler beheben",
"ru": "исправить 2 проблемы безопасности в зависимостях\nисправить возможную ошибку, уведомленную Sentry",
"pt": "corrigir 2 problemas de segurança em dependências\ncorrigir possível erro notificado pelo Sentry",
"nl": "2 beveiligingsproblemen in afhankelijkheden opgelost\nmogelijke fout gemeld door Sentry verholpen",
"fr": "corriger 2 problèmes de sécurité dans les dépendances\ncorriger une erreur possible signalée par Sentry",
"it": "correggere 2 problemi di sicurezza nelle dipendenze\ncorreggere possibile errore notificato da Sentry",
"es": "corregir 2 problemas de seguridad en dependencias\ncorregir posible error notificado por Sentry",
"pl": "naprawić 2 problemy bezpieczeństwa w zależnościach\nnaprawić możliwy błąd zgłoszony przez Sentry",
"uk": "виправити 2 проблеми безпеки в залежностях\nвиправити можливу помилку, повідомлену Sentry",
"zh-cn": "修复依赖项中的 2 个安全问题\n修复 Sentry 通知的可能错误"
},
"3.3.1": {
"en": "fix small Sentry-discovered error (#418)\nadded note for multihomes to documentation (#422)",
Expand Down
2 changes: 1 addition & 1 deletion src/lib/tibberCalculator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ export class TibberCalculator extends TibberHelper {
);
}

if (this.adapter.config.CalculatorList[channel].chTargetState) {
if (this.adapter.config.CalculatorList[channel].chTargetState != null) {
const chTargetStateComponents = this.adapter.config.CalculatorList[channel].chTargetState.split(".");
let foundAllBadComponents = true;
badComponents.forEach((badComponent) => {
Expand Down

0 comments on commit e0772f1

Please sign in to comment.