Index: jbidwatcher/trunk/src/com/jbidwatcher/auction/Auctions.java =================================================================== --- jbidwatcher/trunk/src/com/jbidwatcher/auction/Auctions.java (revision 547) +++ jbidwatcher/trunk/src/com/jbidwatcher/auction/Auctions.java (revision 577) @@ -160,6 +160,11 @@ ae.clearUpdating(); if (!(after.toString().equals(before.toString()))) { MQFactory.getConcrete("upload").enqueue(ae); + String category = ae.getCategory(); + if(category == null) { + category = !ae.isComplete() ? "current" : "complete"; + } + MQFactory.getConcrete("redraw").enqueue(category); } MQFactory.getConcrete("redraw").enqueue(ae); MQFactory.getConcrete("Swing").enqueue("Done updating " + Auctions.getTitleAndComment(ae));