diff options
author | Steve Manuel <nilslice@gmail.com> | 2016-10-18 12:54:32 -0700 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2016-10-18 12:54:32 -0700 |
commit | d7f41f06a68cd16e94cb64f69b531377d4181c08 (patch) | |
tree | 326acdb9d405496470b00498f62232347a793947 | |
parent | f2248829204c1c50292694b1bafbf4da1722fd37 (diff) |
debugging
-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) { |