Skip to content

Commit

Permalink
Fixed TnefPropertyTag.IsNamed to always return true
Browse files Browse the repository at this point in the history
  • Loading branch information
jstedfast committed Sep 26, 2016
1 parent 8c0029b commit d613bf5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MimeKit/Tnef/TnefPropertyTag.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5496,7 +5496,7 @@ public bool IsMultiValued {
/// </remarks>
/// <value><c>true</c> if the property has a special name; otherwise, <c>false</c>.</value>
public bool IsNamed {
get { return Enum.IsDefined (typeof (TnefPropertyId), id); }
get { return true; }
}

/// <summary>
Expand Down

0 comments on commit d613bf5

Please sign in to comment.