From 63a05d01cdb24f3e835f92cec865e664a9efbf96 Mon Sep 17 00:00:00 2001 From: rudolfkoenig <> Date: Sun, 30 Mar 2014 07:18:42 +0000 Subject: [PATCH] notify: make showTriggerTime default git-svn-id: https://svn.fhem.de/fhem/trunk@5370 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/FHEM/91_notify.pm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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). +