aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Dto
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-10-08 14:51:07 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-10-08 14:51:07 -0400
commitb3595eab6a94fda4f81f637007b2ac79e8a85065 (patch)
tree9acec1595805403d681aa80cddbc183c941d6d52 /MediaBrowser.Server.Implementations/Dto
parent5cd3276775461d96d912d47fbae6857b887b98d0 (diff)
update music brainz to fetch overview
Diffstat (limited to 'MediaBrowser.Server.Implementations/Dto')
-rw-r--r--MediaBrowser.Server.Implementations/Dto/DtoService.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/MediaBrowser.Server.Implementations/Dto/DtoService.cs b/MediaBrowser.Server.Implementations/Dto/DtoService.cs
index ae204c892a..47c1d83320 100644
--- a/MediaBrowser.Server.Implementations/Dto/DtoService.cs
+++ b/MediaBrowser.Server.Implementations/Dto/DtoService.cs
@@ -1432,6 +1432,12 @@ namespace MediaBrowser.Server.Implementations.Dto
SetBookProperties(dto, book);
}
+ var movie = item as Movie;
+ if (movie != null)
+ {
+ dto.ProductionLocations = new string[] { };
+ }
+
var photo = item as Photo;
if (photo != null)
{