This commit is contained in:
Downforce Agent 2024-07-21 15:35:14 -05:00
parent 93ec606440
commit 07e98b12df

View File

@ -413,7 +413,12 @@ public class Suggs implements ActionListener, ListSelectionListener {
} }
String ocmd = "modify"; String ocmd = "modify";
if (i >= 12) ocmd = "create"; if (i >= 12) ocmd = "create";
String oArtistLine = oArtist.replace("\"", "\\\"")+"\\n"; String oArtistLine;
if (!oArtist.isEmpty()) {
oArtistLine = oArtist.replace("\"", "\\\"")+"\\n";
} else {
oArtistLine = "";
}
int i2 = 0; int i2 = 0;
while (i2 < 17 /*17 languages*/) { while (i2 < 17 /*17 languages*/) {
String language = "INTERNAL_ERROR"; String language = "INTERNAL_ERROR";