Luke Pulverenti преди 10 години
родител
ревизия
ffe8af4c37
променени са 2 файла, в които са добавени 5 реда и са изтрити 1 реда
  1. 2 1
      MediaBrowser.Providers/Manager/MetadataService.cs
  2. 3 0
      MediaBrowser.WebDashboard/MediaBrowser.WebDashboard.csproj

+ 2 - 1
MediaBrowser.Providers/Manager/MetadataService.cs

@@ -12,6 +12,7 @@ using System.Linq;
 using System.Threading;
 using System.Threading.Tasks;
 using CommonIO;
+using MediaBrowser.Controller.Entities.Audio;
 using MediaBrowser.Controller.Entities.Movies;
 
 namespace MediaBrowser.Providers.Manager
@@ -227,7 +228,7 @@ namespace MediaBrowser.Providers.Manager
                 return item.DateLastRefreshed;
             }
 
-            if (item is BoxSet)
+            if (item is BoxSet || (item is IItemByName && !(item is MusicArtist)))
             {
                 return item.DateLastRefreshed;
             }

+ 3 - 0
MediaBrowser.WebDashboard/MediaBrowser.WebDashboard.csproj

@@ -119,6 +119,9 @@
     <Content Include="dashboard-ui\bower_components\hammerjs\hammer.min.js">
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </Content>
+    <Content Include="dashboard-ui\bower_components\howler.js\howler.min.js">
+      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
+    </Content>
     <Content Include="dashboard-ui\bower_components\jquery\dist\jquery.min.js">
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </Content>