Index: Changelog6.html
===================================================================
--- Changelog6.html (revision 8940)
+++ Changelog6.html (working copy)
@@ -478,6 +478,7 @@
#3874 - fishbone skin does not refresh playlist correctly
#3893 - changing sort by pulldown kicks you out to top level
#3898 - 'Now Playing' in web interface shows Artist and Album twice
+ #3914 - 'Play other songs in album or directory' broken
Index: Slim/Buttons/BrowseDB.pm
===================================================================
--- Slim/Buttons/BrowseDB.pm (revision 8940)
+++ Slim/Buttons/BrowseDB.pm (working copy)
@@ -189,7 +189,7 @@
# find out if this item is part of a container, such as an album or playlist previously selected.
my $container = 0;
- if ($levels[$level-1] =~ /^(?:playlist|album)$/ && grep { /playlist|me\.id/ } keys %{$findCriteria}) {
+ if ($levels[$level-1] =~ /^(?:playlist|album)$/ && grep { /playlist|album\.id/ } keys %{$findCriteria}) {
$container = 1;
}