whoops
This commit is contained in:
parent
93ec606440
commit
07e98b12df
|
@ -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";
|
||||||
|
|
Loading…
Reference in New Issue
Block a user