Browse Source

add GameSystem to GameSystem dto

Luke Pulverenti 11 years ago
parent
commit
85568474ce
1 changed files with 12 additions and 0 deletions
  1. 12 0
      MediaBrowser.Server.Implementations/Dto/DtoService.cs

+ 12 - 0
MediaBrowser.Server.Implementations/Dto/DtoService.cs

@@ -373,6 +373,11 @@ namespace MediaBrowser.Server.Implementations.Dto
             dto.GameSystem = item.GameSystem;
             dto.GameSystem = item.GameSystem;
         }
         }
 
 
+        private void SetGameSystemProperties(BaseItemDto dto, GameSystem item)
+        {
+            dto.GameSystem = item.GameSystemName;
+        }
+
         /// <summary>
         /// <summary>
         /// Gets the backdrop image tags.
         /// Gets the backdrop image tags.
         /// </summary>
         /// </summary>
@@ -1064,6 +1069,13 @@ namespace MediaBrowser.Server.Implementations.Dto
                 SetGameProperties(dto, game);
                 SetGameProperties(dto, game);
             }
             }
 
 
+            var gameSystem = item as GameSystem;
+
+            if (gameSystem != null)
+            {
+                SetGameSystemProperties(dto, gameSystem);
+            }
+
             var musicVideo = item as MusicVideo;
             var musicVideo = item as MusicVideo;
 
 
             if (musicVideo != null)
             if (musicVideo != null)