diff options
-rw-r--r-- | libempathy/empathy-dispatch-operation.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/libempathy/empathy-dispatch-operation.c b/libempathy/empathy-dispatch-operation.c index 5619badaa..a6fb3b3a5 100644 --- a/libempathy/empathy-dispatch-operation.c +++ b/libempathy/empathy-dispatch-operation.c @@ -475,12 +475,18 @@ empathy_dispatch_operation_approve (EmpathyDispatchOperation *operation) g_signal_emit (operation, signals[APPROVED], 0); } - else + else if (priv->status < EMPATHY_DISPATCHER_OPERATION_STATE_APPROVING) { DEBUG ("Pre-approving operation %s", empathy_dispatch_operation_get_object_path (operation)); priv->approved = TRUE; } + else + { + DEBUG ( + "Ignoring approval for %s as it's already past the approval stage", + empathy_dispatch_operation_get_object_path (operation)); + } } /* Returns whether or not the operation was successfully claimed */ |