Fixed tag not being displayed when filtering

This commit is contained in:
Eduard Urbach 2018-03-15 16:57:39 +01:00
parent fbf6bc3302
commit a06130973c

View File

@ -17,6 +17,7 @@ const (
func render(ctx *aero.Context, allTracks []*arn.SoundTrack) string { func render(ctx *aero.Context, allTracks []*arn.SoundTrack) string {
user := utils.GetUser(ctx) user := utils.GetUser(ctx)
index, _ := ctx.GetInt("index") index, _ := ctx.GetInt("index")
tag := ctx.Get("tag")
// Slice the part that we need // Slice the part that we need
tracks := allTracks[index:] tracks := allTracks[index:]
@ -39,5 +40,5 @@ func render(ctx *aero.Context, allTracks []*arn.SoundTrack) string {
} }
// Otherwise, send the full page // Otherwise, send the full page
return ctx.HTML(components.SoundTracks(tracks, nextIndex, "", user)) return ctx.HTML(components.SoundTracks(tracks, nextIndex, tag, user))
} }