aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-10-14 18:35:32 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-10-14 18:35:32 -0400
commitffe8af4c37e7ee15985c063316b073e4435cf3fe (patch)
tree26cbfe493b08790850e5b9f67f8ccbef4cd7daea
parentc278b33edf948dd83d8e6df2726a9c8e74854595 (diff)
fix missing file
-rw-r--r--MediaBrowser.Providers/Manager/MetadataService.cs3
-rw-r--r--MediaBrowser.WebDashboard/MediaBrowser.WebDashboard.csproj3
2 files changed, 5 insertions, 1 deletions
diff --git a/MediaBrowser.Providers/Manager/MetadataService.cs b/MediaBrowser.Providers/Manager/MetadataService.cs
index 316809fa8..1dc29cdde 100644
--- a/MediaBrowser.Providers/Manager/MetadataService.cs
+++ b/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;
}
diff --git a/MediaBrowser.WebDashboard/MediaBrowser.WebDashboard.csproj b/MediaBrowser.WebDashboard/MediaBrowser.WebDashboard.csproj
index e1fbed696..a45a383cc 100644
--- a/MediaBrowser.WebDashboard/MediaBrowser.WebDashboard.csproj
+++ b/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>