This commit is contained in:
Chayapak 2023-08-28 17:02:53 +07:00
parent 88ceb46d71
commit 11ed0c5eb1

View file

@ -96,8 +96,9 @@ public class MusicCommand {
final Path path = getPath(context, "location");
if (path != null) songPlayer.loadSong(path);
else songPlayer.loadSong(getUrl(context, "location"));
songPlayer.loadSong(path);
// if (path != null) songPlayer.loadSong(path);
// else songPlayer.loadSong(getUrl(context, "location"));
return 1;
}