Skip to content

Commit

Permalink
Fixed slash in url problem for lyricwiki
Browse files Browse the repository at this point in the history
  • Loading branch information
FreeleX committed Aug 7, 2012
1 parent a8cec44 commit 4623b0e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified MLyrics-latest.xpi
Binary file not shown.
2 changes: 1 addition & 1 deletion chrome/content/jscripts/fetch.js
Original file line number Diff line number Diff line change
Expand Up @@ -903,7 +903,7 @@ mlyrics.fetch = {
var songUrlStartPos = respLyr.indexOf("'url':'");
if (songUrlStartPos != -1) {
var songUrlEndPos = respLyr.indexOf("'", songUrlStartPos+7);
var songUrl = respLyr.substring(songUrlStartPos+7, songUrlEndPos);
var songUrl = decodeURIComponent(respLyr.substring(songUrlStartPos+7, songUrlEndPos));

sourceObj.getLyrics2(songUrl, cbFn);
}
Expand Down

0 comments on commit 4623b0e

Please sign in to comment.