mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-04-06 06:08: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:
parent
5c0367c6a6
commit
b29ad87a51
@ -1282,11 +1282,15 @@ sub Pushover_SetMessage2 ($$$$) {
|
|||||||
|
|
||||||
if ( defined( $values{attachment} ) ) {
|
if ( defined( $values{attachment} ) ) {
|
||||||
my $path =
|
my $path =
|
||||||
"file://"
|
AttrVal( $name, "storage", AttrVal( "global", "modpath", "." ) );
|
||||||
. AttrVal( $name, "storage", AttrVal( "global", "modpath", "." ) );
|
|
||||||
$path .= "/" unless ( $path =~ /\/$/ );
|
$path .= "/" unless ( $path =~ /\/$/ );
|
||||||
|
|
||||||
$values{attachment} = $path . $values{attachment};
|
$values{attachment} = "file://"
|
||||||
|
. (
|
||||||
|
$values{attachment} =~ /^\//
|
||||||
|
? $values{attachment}
|
||||||
|
: $path . $values{attachment}
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
$body = Pushover_HttpForm( $body, $multipart, \%values );
|
$body = Pushover_HttpForm( $body, $multipart, \%values );
|
||||||
|
Loading…
x
Reference in New Issue
Block a user