diff options
author | Daniel Friesel <derf@finalrewind.org> | 2015-05-01 19:46:28 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2015-05-01 19:46:28 +0200 |
commit | dee74149885285a35ade3f2d4f3def79a8fc8f05 (patch) | |
tree | b073332a81f9b1eef96bafe1ff2377918a4e3fde /lib/Travel/Status | |
parent | 56afae1f7986850f786e1347d1dac61d810cde47 (diff) |
IRIS->new: Actually use the lwp_options default when it is not set
Diffstat (limited to 'lib/Travel/Status')
-rw-r--r-- | lib/Travel/Status/DE/IRIS.pm | 2 |
1 files changed, 1 insertions, 1 deletions
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'); |