update recording dialogs

This commit is contained in:
Luke Pulverenti
2016-09-22 02:57:31 -04:00
parent 6999017bc9
commit eee9c0e048
5 changed files with 64 additions and 35 deletions

View File

@@ -412,7 +412,8 @@ namespace MediaBrowser.Server.Implementations.Persistence
"SeriesId",
"SeriesSortName",
"PresentationUniqueKey",
"InheritedParentalRatingValue"
"InheritedParentalRatingValue",
"InheritedTags"
};
private readonly string[] _mediaStreamSaveColumns =
@@ -1459,6 +1460,12 @@ namespace MediaBrowser.Server.Implementations.Persistence
}
index++;
if (!reader.IsDBNull(index))
{
item.InheritedTags = reader.GetString(index).Split('|').Where(i => !string.IsNullOrWhiteSpace(i)).ToList();
}
index++;
return item;
}