diff --git a/gui/griffon-app/views/com/muwire/gui/SearchTabView.groovy b/gui/griffon-app/views/com/muwire/gui/SearchTabView.groovy index 926f3b96..7fa3db55 100644 --- a/gui/griffon-app/views/com/muwire/gui/SearchTabView.groovy +++ b/gui/griffon-app/views/com/muwire/gui/SearchTabView.groovy @@ -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 keys = table.rowSorter.getSortKeys()