mrw wrote: 
> Agree.
> 
> I'm pretty confident that a simple patch along the lines below would fix
> it. But does require quiet study to be sure.
> 
> Untested:
> 
> > 
Code:
--------------------
  >   > 
  > sub _format_request {
  >     my $self = shift;
  > 
  >     my $fullpath = $self->request->uri->path_query;
  >     $fullpath = "/$fullpath" unless $fullpath =~ /^\//;
  > 
  >     # Proxy requests require full URL
  >     if ( $self->use_proxy ) {
  >             $fullpath = $self->request->uri->as_string;
  >             # Strip off fragment suffix if it is there. Some servers won't 
tolerate them.
  >             $fullpath =~ s/\#.*//s;
  >     }
  > etc
  > 
  > 
--------------------
> > 

I have corrected my edit to read as above, this now works.

Paul


------------------------------------------------------------------------
pshepherd's Profile: http://forums.slimdevices.com/member.php?userid=9779
View this thread: http://forums.slimdevices.com/showthread.php?t=109826

_______________________________________________
plugins mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/plugins

Reply via email to