Hey there, I'm currently working with an API but I need to make a patch for it.
Trying to fix the issue with the code below:
Songapi.prototype.goPlaySong = Songapi.prototype.goPlaySong.toString().replace('["universal","emi","warner"]) !== -1','false');
Unfortunately, it's not working as expected. I also attempted the following:
Trying another approach:
Songapi.prototype.goPlaySong = Function(Songapi.prototype.goPlaySong.toString().replace('["universal","emi","warner"]) !== -1','false'));
or
Another attempt using eval():
Songapi.prototype.goPlaySong = eval(Songapi.prototype.goPlaySong.toString().replace('["universal","emi","warner"]) !== -1','false'));
However, I'm still facing the same issue. Any suggestions on how to resolve this problem?