1
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-05-07 22:29:19 +00:00

FHEMWEB: plotfork check: FW_ME is not always set

git-svn-id: https://svn.fhem.de/fhem/trunk@4346 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2013-12-08 16:39:21 +00:00
parent 53976802ba
commit 747845fb7d

View File

@ -351,7 +351,7 @@ FW_Read($)
my $pid;
if(AttrVal($FW_wname, "plotfork", undef)) {
# Process SVG rendering as a parallel process
return if(($arg =~ m+$FW_ME/SVG_showLog+) && ($pid = fork));
return if(($arg =~ m+/SVG_showLog+) && ($pid = fork));
}
my $cacheable = FW_answerCall($arg);