Skip to content

Commit

Permalink
Moved Lyrics API to a New Server
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberboysumanjay committed Dec 12, 2020
1 parent 0e05341 commit 121c6ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/API/saavn.dart
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ Future fetchSongDetails(songId) async {
} else {
lyrics = "null";
String lyricsApiUrl =
"https://sumanjay.vercel.app/lyrics/" + artist + "/" + title;
"https://musifydev.vercel.app/lyrics/" + artist + "/" + title;
var lyricsApiRes =
await http.get(lyricsApiUrl, headers: {"Accept": "application/json"});
var lyricsResponse = json.decode(lyricsApiRes.body);
Expand Down

0 comments on commit 121c6ed

Please sign in to comment.