rename two properties based on code suggestions

This commit is contained in:
dkanada
2020-01-08 10:52:48 +09:00
parent 8a0ef41036
commit 73fac50e57
4 changed files with 9 additions and 9 deletions

View File

@@ -542,8 +542,8 @@ namespace MediaBrowser.MediaEncoding.Probing
if (streamInfo.tags != null)
{
attachment.Filename = GetDictionaryValue(streamInfo.tags, "filename");
attachment.MIMEType = GetDictionaryValue(streamInfo.tags, "mimetype");
attachment.FileName = GetDictionaryValue(streamInfo.tags, "filename");
attachment.MimeType = GetDictionaryValue(streamInfo.tags, "mimetype");
attachment.Comment = GetDictionaryValue(streamInfo.tags, "comment");
}