diff options
-rw-r--r-- | system/db/content.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/db/content.go b/system/db/content.go index 2626e8b..99d662b 100644 --- a/system/db/content.go +++ b/system/db/content.go @@ -251,7 +251,7 @@ func (s sortablePosts) Len() int { } func (s sortablePosts) Less(i, j int) bool { - return s[i].Time() < s[j].Time() + return s[i].Time() > s[j].Time() } func (s sortablePosts) Swap(i, j int) { |