From 96fed68c6f54447c28733564c1dee58cb8b683a8 Mon Sep 17 00:00:00 2001 From: klassm Date: Sun, 25 Aug 2013 09:23:47 +0000 Subject: [PATCH] explicitely return undef to avoid log messages git-svn-id: svn://svn.code.sf.net/p/fhem/code/trunk@3786 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/contrib/99_gcmsend.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/fhem/contrib/99_gcmsend.pm b/fhem/contrib/99_gcmsend.pm index c35c48e00..1c887ff22 100644 --- a/fhem/contrib/99_gcmsend.pm +++ b/fhem/contrib/99_gcmsend.pm @@ -96,6 +96,7 @@ sub gcmsend_message($$$) { } elsif ($hash->{STATE} != "OK") { $hash->{STATE} = "OK"; } + return undef; } sub gcmsend_notify($$)