[Slim-Checkins] r10216 - /trunk/server/Slim/Networking/Async/HTTP.pm
andy at svn.slimdevices.com
andy at svn.slimdevices.com
Thu Oct 5 11:47:47 PDT 2006
Author: andy
Date: Thu Oct 5 11:47:46 2006
New Revision: 10216
URL: http://svn.slimdevices.com?rev=10216&view=rev
Log:
Argh, need to allow https here too
Modified:
trunk/server/Slim/Networking/Async/HTTP.pm
Modified: trunk/server/Slim/Networking/Async/HTTP.pm
URL: http://svn.slimdevices.com/trunk/server/Slim/Networking/Async/HTTP.pm?rev=10216&r1=10215&r2=10216&view=diff
==============================================================================
--- trunk/server/Slim/Networking/Async/HTTP.pm (original)
+++ trunk/server/Slim/Networking/Async/HTTP.pm Thu Oct 5 11:47:46 2006
@@ -125,7 +125,7 @@
HTTP::Request->new( $args->{method} => $args->{url} )
);
- if ( $self->request->uri !~ /^http:/i ) {
+ if ( $self->request->uri !~ /^https?:/i ) {
my $error = 'Cannot request non-HTTP URL ' . $self->request->uri;
return $self->_http_error( $error, $args );
}
More information about the checkins
mailing list