fix default value bug in getAutoAstroModeMorningHorizon AttrVal

This commit is contained in:
Marko Oldenburg 2020-04-04 15:24:47 +02:00
parent b2e035b6a2
commit b1025d746d

View File

@ -6586,14 +6586,14 @@ sub getAutoAstroModeMorningHorizon {
my $self = shift;
return AttrVal( $self->{shuttersDev}, 'ASC_AutoAstroModeMorningHorizon',
'none' );
0 );
}
sub getAutoAstroModeEveningHorizon {
my $self = shift;
return AttrVal( $self->{shuttersDev}, 'ASC_AutoAstroModeEveningHorizon',
'none' );
0 );
}
sub getUp {