Subject: | Bug in version method inside Info.pm submodule |
Date: | Fri, 12 May 2017 20:07:25 +0200 |
To: | bug-WebService-SSLLabs [...] rt.cpan.org |
From: | me open <theroadisopen [...] gmail.com> |
Subject of the bug report:
------------------------------------
https://metacpan.org/pod/WebService::SSLLabs::Info
version (method)
SSL Labs software version as a string (e.g., "1.11.14")
Bug:
-------
Calling '$info->version()' doesn't return anything in version 0.27 of the
module.
Current code:
-------------------
sub version {
my ($self) = @_;
return $self->{version};
}
Fix:
-----
sub version {
my ($self) = @_;
return $self->{engineVersion};
}