Updating branch refs/heads/master
         to 879a9f4d0c891a30bbbe6f6f226592327ed95a34 (commit)
       from d454447d43d983460f55b558fbf1f5b51554b314 (commit)

commit 879a9f4d0c891a30bbbe6f6f226592327ed95a34
Author: Christian Dywan <[email protected]>
Date:   Thu Feb 10 23:45:13 2011 +0100

    Add return statement after signalling a send error
    
    Otherwise there would always be a success signal following
    an error signal.

 postler/postler-service.vala |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/postler/postler-service.vala b/postler/postler-service.vala
index 6de7552..ef113d9 100644
--- a/postler/postler-service.vala
+++ b/postler/postler-service.vala
@@ -324,6 +324,7 @@ namespace Postler {
                     }
             } catch (Error error) {
                 sent (account, filename, error.message);
+                return;
             }
             sent (account, filename, _("Account \"%s\" doesn't exist").printf 
(account));
         }
_______________________________________________
Xfce4-commits mailing list
[email protected]
http://foo-projects.org/mailman/listinfo/xfce4-commits

Reply via email to