I have found the bug and it is fairly simple to fix. Edit the file
AlienAddon\AlienStreamMenu.pm, go to line 98 and change:
my $new_root = $self->{path} . " / " . $name;
to
my $new_root = $self->{path} . "/" . $name;
(remove the spaces around the '/')Neil -- Neil Sleightholm ------------------------------------------------------------------------ Neil Sleightholm's Profile: http://forums.slimdevices.com/member.php?userid=131 View this thread: http://forums.slimdevices.com/showthread.php?t=23957 _______________________________________________ plugins mailing list [email protected] http://lists.slimdevices.com/lists/listinfo/plugins
