Skip to content

Commit

Permalink
The "SortDate" property should just return the created time as they n…
Browse files Browse the repository at this point in the history
…ow use the same type
  • Loading branch information
abjerner committed Apr 28, 2018
1 parent f75475f commit b66799a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Skybrud.Social.Facebook/Models/Posts/FacebookPost.cs
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ public bool HasUpdatedTime {
/// the response - otherwise <see cref="DateTime.MinValue"/> will be returned instead.
/// </summary>
public EssentialsDateTime SortDate {
get { return HasCreatedTime ? CreatedTime.DateTime : DateTime.MinValue; }
get { return CreatedTime; }
}

#endregion
Expand Down

0 comments on commit b66799a

Please sign in to comment.