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 881dc2a + 899e600 commit d4dbd2e
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions Slim/Menu/SystemInfo.pm
Original file line number Diff line number Diff line change
Expand Up @@ -374,11 +374,14 @@ sub infoPerl {
{
type => 'text',
name => 'Mozilla::CA' . cstring($client, 'COLON') . ' ' . ($Mozilla::CA::VERSION || cstring($client, 'UNK')),
},
};

{
type => 'text',
name => sprintf("Net::SSLeay%s %s - %s", cstring($client, 'COLON'), $Net::SSLeay::VERSION, Net::SSLeay::SSLeay_version(Net::SSLeay::SSLEAY_VERSION())),
# add an extra eval, as on systems missing that library we could fail the whole menu
eval {
push @{$items}, {
type => 'text',
name => sprintf("Net::SSLeay%s %s - %s", cstring($client, 'COLON'), $Net::SSLeay::VERSION, Net::SSLeay::SSLeay_version(Net::SSLeay::SSLEAY_VERSION())),
};
};
}
else {
Expand Down

0 comments on commit d4dbd2e

Please sign in to comment.