Skip to content

Commit

Permalink
Merge branch 'public/8.5' into public/9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelherger committed Aug 22, 2024
2 parents bf91b01 + cc86f78 commit f9c431f
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions Slim/Menu/SystemInfo.pm
Original file line number Diff line number Diff line change
Expand Up @@ -363,10 +363,12 @@ sub infoPerl {
type => 'text',
name => 'DBD::SQLite' . cstring($client, 'COLON') . " $DBD::SQLite::VERSION (sqlite " . Slim::Utils::Cache->new()->{_cache}->{dbh}->{sqlite_version} . ')'
},
];

{
if ( Slim::Networking::Async::HTTP->hasSSL() ) {
push @{$items}, {
type => 'text',
name => 'IO::Socket::SSL' . cstring($client, 'COLON') . ' ' . (Slim::Networking::Async::HTTP->hasSSL() ? $IO::Socket::SSL::VERSION : cstring($client, 'UNK')),
name => 'IO::Socket::SSL' . cstring($client, 'COLON') . ' ' . $IO::Socket::SSL::VERSION,
},

{
Expand All @@ -377,8 +379,14 @@ sub infoPerl {
{
type => 'text',
name => sprintf("Net::SSLeay%s %s - %s", cstring($client, 'COLON'), $Net::SSLeay::VERSION, Net::SSLeay::SSLeay_version(Net::SSLeay::SSLEAY_VERSION())),
},
];
};
}
else {
push @{$items}, {
type => 'text',
name => 'IO::Socket::SSL' . cstring($client, 'COLON') . ' ' . cstring($client, 'UNK'),
};
}

if ( Slim::Utils::OSDetect->getOS->sqlHelperClass() =~ /MySQL/i ) {
splice(@{$items}, 5, 0, {
Expand Down

0 comments on commit f9c431f

Please sign in to comment.