|
|
@ -119,9 +119,12 @@ async function checkDWD() {
|
|
|
|
? msg.split('Quelle:')[0]
|
|
|
|
? msg.split('Quelle:')[0]
|
|
|
|
: msg
|
|
|
|
: msg
|
|
|
|
msg = replaceUmlaute(msg)
|
|
|
|
msg = replaceUmlaute(msg)
|
|
|
|
|
|
|
|
console.log(msg, msg.indexOf('Es sind keine Warnungen') > -1, region.ignoreEOW)
|
|
|
|
if (!!stateMachine[ region.dwdID ]) {
|
|
|
|
if (!!stateMachine[ region.dwdID ]) {
|
|
|
|
if (stateMachine [ region.dwdID ] != msg) {
|
|
|
|
if (stateMachine [ region.dwdID ] != msg) {
|
|
|
|
|
|
|
|
if (msg.indexOf('Es sind keine Warnungen') > -1) {
|
|
|
|
|
|
|
|
if (!!region.ignoreEOW) continue
|
|
|
|
|
|
|
|
}
|
|
|
|
await sendPage( region.preset, msg )
|
|
|
|
await sendPage( region.preset, msg )
|
|
|
|
stateMachine [ region.dwdID ] = msg
|
|
|
|
stateMachine [ region.dwdID ] = msg
|
|
|
|
}
|
|
|
|
}
|
|
|
|