Skip to content

Commit fd57329

Browse files
committed
fetch_oui_from_custom now calls _fetch_oui_from_url for all the retries and error-checking benefits.
1 parent f2b454f commit fd57329

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Net/MAC/Vendor.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ sub fetch_oui_from_custom {
235235

236236
return unless defined $url;
237237

238-
my $html = __PACKAGE__->ua->get( $url );
238+
my $html = __PACKAGE__->_fetch_oui_from_url( $url );
239239
unless( defined $html ) {
240240
carp "Could not fetch data from the IEEE!";
241241
return;

0 commit comments

Comments
 (0)