mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-01-31 18:59:33 +00:00
remove the "continue" text sen in the background when using the .gplot editor
git-svn-id: https://svn.fhem.de/fhem/trunk@3217 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
9bd29c458f
commit
218bbea46d
@ -456,7 +456,10 @@ FW_answerCall($)
|
||||
my $localType;
|
||||
($localType, $FW_RET) = &{$h->{FUNC}}($arg);
|
||||
use strict "refs";
|
||||
last if($FW_RET && $FW_RET eq "continue"); # Continue displaying the data
|
||||
if($FW_RET && $FW_RET eq "continue") { # Continue displaying the data
|
||||
$FW_RET="";
|
||||
last;
|
||||
}
|
||||
$FW_RETTYPE = $localType;
|
||||
return defined($FW_RETTYPE) ? 0 : -1;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user