flipped title and creator on custom header

This commit is contained in:
2020-08-31 15:44:55 -05:00
parent 206156f907
commit cf48fedad1

View File

@@ -172,8 +172,8 @@ func main() {
// print out information at the header
fmt.Fprintln(w, "<track>")
fmt.Fprintln(w, "<title>dtam playlist</title>")
fmt.Fprintln(w, "<creator>" + strconv.Itoa(len(playlist_tracks)) + " tracks (Last updated: " + currentTime.Format("Jan 02, 2006") + ")</creator>")
fmt.Fprintln(w, "<creator>dtam playlist</creator>")
fmt.Fprintln(w, "<title>" + strconv.Itoa(len(playlist_tracks)) + " tracks (Last updated: " + currentTime.Format("Jan 02, 2006") + ")</title>")
fmt.Fprintln(w, "<location>https://dtam.pw/music/empty.m4a</location>")
fmt.Fprintln(w, "</track>")