suppress exception

dbus-notify
Zlatin Balevsky 2022-06-12 05:18:45 +01:00
parent 96098bb2d9
commit 9514192e4c
No known key found for this signature in database
GPG Key ID: A72832072D525E41
1 changed files with 3 additions and 1 deletions

View File

@ -823,7 +823,9 @@ class SearchTabView {
// 2. it exists in the senders table, update the row
JTable table = builder.getVariable("senders-table")
table.model.fireTableRowsUpdated(index, index)
try {
table.model.fireTableRowsUpdated(index, index)
} catch (IndexOutOfBoundsException strange) {} // TODO: investigate
// 3. if the senders table was sorted by trust status, re-sort
List<RowSorter.SortKey> keys = table.rowSorter.getSortKeys()