From dee74149885285a35ade3f2d4f3def79a8fc8f05 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Fri, 1 May 2015 19:46:28 +0200 Subject: IRIS->new: Actually use the lwp_options default when it is not set --- Changelog | 4 ++++ lib/Travel/Status/DE/IRIS.pm | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Changelog b/Changelog index 521eb4d..377b91a 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,7 @@ +git HEAD + + * IRIS->new: Fix default lwp_options value (was documented, but not used) + Travel::Status::DE::IRIS 1.00 - Fri May 01 2015 * IRIS->new: Use lwp_options to explicitly pass arguments to the diff --git a/lib/Travel/Status/DE/IRIS.pm b/lib/Travel/Status/DE/IRIS.pm index 1b153e0..671cef2 100644 --- a/lib/Travel/Status/DE/IRIS.pm +++ b/lib/Travel/Status/DE/IRIS.pm @@ -21,7 +21,7 @@ sub new { my %lwp_options = %{ $opt{lwp_options} // { timeout => 10 } }; - my $ua = LWP::UserAgent->new( %{ $opt{lwp_options} } ); + my $ua = LWP::UserAgent->new(%lwp_options); if ( not $opt{station} ) { confess('station flag must be passed'); -- cgit v1.2.3