Skip to content

Commit

Permalink
Fix bug causing /lyrics to return null
Browse files Browse the repository at this point in the history
  • Loading branch information
toasterofbread committed Nov 5, 2022
1 parent c5aa62f commit 1211696
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ def lyrics():
"timed": True
}
self.setCache("lyrics", id, lyrics)
return jsonify(cached)
return jsonify(lyrics)

@self.app.route("/youtubeapi/<endpoint>/")
@self.requireKey
Expand Down

0 comments on commit 1211696

Please sign in to comment.