diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-08-11 17:55:48 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-08-11 17:55:48 -0400 |
| commit | b7867214ef317bbf6502e53701a990ec5f13b645 (patch) | |
| tree | 428594aefb259b23b2ae990a50417c75c41f4338 /Emby.Server.Implementations/Dto | |
| parent | a7db7cd40cf303b4f95c25ac34bd7f947b084344 (diff) | |
update download error handling
Diffstat (limited to 'Emby.Server.Implementations/Dto')
| -rw-r--r-- | Emby.Server.Implementations/Dto/DtoService.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Dto/DtoService.cs b/Emby.Server.Implementations/Dto/DtoService.cs index 2d717dc2ce..5ad3a7ef3e 100644 --- a/Emby.Server.Implementations/Dto/DtoService.cs +++ b/Emby.Server.Implementations/Dto/DtoService.cs @@ -1263,7 +1263,7 @@ namespace Emby.Server.Implementations.Dto var hasSpecialFeatures = item as IHasSpecialFeatures; if (hasSpecialFeatures != null) { - var specialFeatureCount = hasSpecialFeatures.SpecialFeatureIds.Count; + var specialFeatureCount = hasSpecialFeatures.SpecialFeatureIds.Length; if (specialFeatureCount > 0) { |
