From cf48fedad14f3931a5946df13ed0c55d03e48b9c Mon Sep 17 00:00:00 2001 From: Daniel Tam Date: Mon, 31 Aug 2020 15:44:55 -0500 Subject: [PATCH] flipped title and creator on custom header --- convert.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/convert.go b/convert.go index 261cd7c..6ab2db3 100644 --- a/convert.go +++ b/convert.go @@ -172,8 +172,8 @@ func main() { // print out information at the header fmt.Fprintln(w, "") - fmt.Fprintln(w, "dtam playlist") - fmt.Fprintln(w, "" + strconv.Itoa(len(playlist_tracks)) + " tracks (Last updated: " + currentTime.Format("Jan 02, 2006") + ")") + fmt.Fprintln(w, "dtam playlist") + fmt.Fprintln(w, "" + strconv.Itoa(len(playlist_tracks)) + " tracks (Last updated: " + currentTime.Format("Jan 02, 2006") + ")") fmt.Fprintln(w, "https://dtam.pw/music/empty.m4a") fmt.Fprintln(w, "")