mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-01-31 18:59:33 +00:00
98_Installer: fix repository visibility
git-svn-id: https://svn.fhem.de/fhem/trunk@18929 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
2697e9d7b8
commit
4cd0779f73
@ -1028,8 +1028,8 @@ sub CreateMetadataList ($$$) {
|
||||
next
|
||||
if (
|
||||
$mAttr eq 'version_control'
|
||||
&& ( !defined( $modMeta->{resources} )
|
||||
|| defined( $modMeta->{resources}{repository} ) )
|
||||
&& ( !defined( $modMeta->{resources} )
|
||||
|| !defined( $modMeta->{resources}{repository} ) )
|
||||
);
|
||||
next
|
||||
if ( $mAttr eq 'release_date'
|
||||
@ -1233,7 +1233,8 @@ sub CreateMetadataList ($$$) {
|
||||
m/^(?:https?:\/\/)?forum\.fhem\.de/i );
|
||||
|
||||
$l .= 'Limited - '
|
||||
if ( $modMeta->{x_support_status} eq 'limited' );
|
||||
if ( defined( $modMeta->{x_support_status} )
|
||||
&& $modMeta->{x_support_status} eq 'limited' );
|
||||
|
||||
$l .=
|
||||
'<a href="'
|
||||
|
Loading…
Reference in New Issue
Block a user