diff --git a/fhem/FHEM/70_Pushbullet.pm b/fhem/FHEM/70_Pushbullet.pm index c4afb5210..3e4b98444 100755 --- a/fhem/FHEM/70_Pushbullet.pm +++ b/fhem/FHEM/70_Pushbullet.pm @@ -163,7 +163,8 @@ sub Pushbullet_Set($@) { ($link, $title, $deviceNick, $deviceIden, $deviceEmail) = Pushbullet_checkArgs($hash, $cmd, @setValues); # Link check - return "URL is not valid. Correct sytax: set " . $name . " link http://www.google.com [| Title | Device] " if( $link !~ /^(http|https):\/\// ); + return "URL is not valid. Correct sytax: set " . $name . " link http://www.google.com [| Title | Device] " + if( $link !~ /^(http|https):\/\/.*/ && $link !~ /^skype:.*/ ); # Push geht an Device $jsonHash = {'type' => 'link', 'device_iden' => $deviceIden, 'title' => $title, 'url' => $link};