diff --git a/fhem/FHEM/91_notify.pm b/fhem/FHEM/91_notify.pm index 8cfa876f3..a5e083158 100755 --- a/fhem/FHEM/91_notify.pm +++ b/fhem/FHEM/91_notify.pm @@ -70,7 +70,7 @@ notify_Exec($$) } if($found) { $ntfy->{STATE} = - AttrVal($ln,'showTriggerTime',0) ? $dev->{NTFY_TRIGGERTIME} : 'active'; + AttrVal($ln,'showTriggerTime',1) ? $dev->{NTFY_TRIGGERTIME} : 'active'; Log3 $ln, 5, "Triggering $ln"; my (undef, $exec) = split("[ \t]+", $ntfy->{DEF}, 2); @@ -235,7 +235,9 @@ notify_Attr(@) often not intended.
  • showTriggerTime
    - Replace STATE content 'active' by timestamp of last execution.
  • + Show the timestamp of the last execution as the status (STATE) of the + notify instance. Default is 1 (on). +