diff --git a/src/java/com/threerings/presents/util/PersistingUnit.java b/src/java/com/threerings/presents/util/PersistingUnit.java index 8e99764fe..19045315c 100644 --- a/src/java/com/threerings/presents/util/PersistingUnit.java +++ b/src/java/com/threerings/presents/util/PersistingUnit.java @@ -72,10 +72,14 @@ public abstract class PersistingUnit extends Invoker.Unit throws Exception; /** - * Handles the success case, which by default is to do nothing. + * Handles the success case, which by default posts a response to a ConfirmListener. + * If you need something else, or to repond to a ResultListener, you'll need to override this. */ public void handleSuccess () { + if (_listener instanceof InvocationService.ConfirmListener) { + reportRequestProcessed(); + } } /**