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
java.lang.ArrayIndexOutOfBoundsException: Index 1 out of bounds for length 1
at org.apache.commons.csv.CSVRecord.get(CSVRecord.java:87)
at be.quodlibet.boxable.datatable.DataTable.addCsvToTable(DataTable.java:290)
at be.quodlibet.boxable.datatable.DataTable.addListToTable(DataTable.java:204)
See
boxable/src/main/java/be/quodlibet/boxable/datatable/DataTable.java
Line 249 in fd0012f
CSVRecord
is zero based indexing so it fails.Should be
line.size() > i
The text was updated successfully, but these errors were encountered: