Revert timeline's sort-order with no-options
parent
f4a4a21710
commit
a331554685
|
@ -197,7 +197,8 @@ func main() {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal(err)
|
log.Fatal(err)
|
||||||
}
|
}
|
||||||
for _, t := range timeline {
|
for i := len(timeline) - 1; i >= 0; i-- {
|
||||||
|
t := timeline[i]
|
||||||
color.Set(color.FgHiRed)
|
color.Set(color.FgHiRed)
|
||||||
fmt.Println(t.Account.Username)
|
fmt.Println(t.Account.Username)
|
||||||
color.Set(color.Reset)
|
color.Set(color.Reset)
|
||||||
|
|
Loading…
Reference in New Issue