You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When calling findLyrics several times in a row, results may differ since it gives the lyrics found in the fastest responding website as per this code :
This might be the best for speed, but not for consistency as one will get different lyrics on different calls.
The code above could be replaced with something like:
Requests would still be made in parallel but that would give a preference order to the websites that are requested (in this example first reqWikia, then reqParolesNet, etc...).
The text was updated successfully, but these errors were encountered:
When calling
findLyrics
several times in a row, results may differ since it gives the lyrics found in the fastest responding website as per this code :alltomp3/index.js
Lines 192 to 201 in 7129f17
This might be the best for speed, but not for consistency as one will get different lyrics on different calls.
The code above could be replaced with something like:
Requests would still be made in parallel but that would give a preference order to the websites that are requested (in this example first
reqWikia
, thenreqParolesNet
, etc...).The text was updated successfully, but these errors were encountered: