diff options
| author | Luke <luke.pulverenti@gmail.com> | 2014-08-31 13:14:04 -0400 |
|---|---|---|
| committer | Luke <luke.pulverenti@gmail.com> | 2014-08-31 13:14:04 -0400 |
| commit | 250c12d3035953487011cda42ede3cdb493eb5bc (patch) | |
| tree | 7aa302903976bf610e69067f8e0af5c38eb76aed | |
| parent | 6e25c572faa463459348015479935fcc6f3b55b0 (diff) | |
| parent | f21cd2a394754f09ce6b63e7e23600f6af05476a (diff) | |
Merge pull request #908 from 7illusions/master
Fix DLNA browsing not working on several items
| -rw-r--r-- | MediaBrowser.Dlna/ContentDirectory/ControlHandler.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Dlna/ContentDirectory/ControlHandler.cs b/MediaBrowser.Dlna/ContentDirectory/ControlHandler.cs index 7a374aff3..3d08159d6 100644 --- a/MediaBrowser.Dlna/ContentDirectory/ControlHandler.cs +++ b/MediaBrowser.Dlna/ContentDirectory/ControlHandler.cs @@ -241,7 +241,7 @@ namespace MediaBrowser.Dlna.ContentDirectory { new KeyValuePair<string,string>("Result", resXML), new KeyValuePair<string,string>("NumberReturned", provided.ToString(_usCulture)), - new KeyValuePair<string,string>("TotalMatches", DidlBuilder.IsIdRoot(id) ? "1" :totalCount.ToString(_usCulture)), + new KeyValuePair<string,string>("TotalMatches", totalCount.ToString(_usCulture)), new KeyValuePair<string,string>("UpdateID", _systemUpdateId.ToString(_usCulture)) }; } |
