2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-05 17:48:44 +00:00

70_Pushover: improved handling for absolute path of attachments

git-svn-id: https://svn.fhem.de/fhem/trunk@18780 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
jpawlowski 2019-03-03 14:48:56 +00:00
parent 5c0367c6a6
commit b29ad87a51

View File

@ -1282,11 +1282,15 @@ sub Pushover_SetMessage2 ($$$$) {
if ( defined( $values{attachment} ) ) {
my $path =
"file://"
. AttrVal( $name, "storage", AttrVal( "global", "modpath", "." ) );
AttrVal( $name, "storage", AttrVal( "global", "modpath", "." ) );
$path .= "/" unless ( $path =~ /\/$/ );
$values{attachment} = $path . $values{attachment};
$values{attachment} = "file://"
. (
$values{attachment} =~ /^\//
? $values{attachment}
: $path . $values{attachment}
);
}
$body = Pushover_HttpForm( $body, $multipart, \%values );