[banshee] AmazonMp3.Store: Fix URL redirection for sign out action



commit c2e24fdc5affb728961bef828771dcaf519bcf40
Author: Bertrand Lorentz <bertrand lorentz gmail com>
Date:   Sun Aug 26 15:20:47 2012 +0200

    AmazonMp3.Store: Fix URL redirection for sign out action
    
    The URL we were using now send you to a contact form.
    
    This fix is deployed on our redirection server, so available to everyone
    using it. Yay server-side programming!

 .../Banshee.AmazonMp3.Store/server/redirect.c      |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/Extensions/Banshee.AmazonMp3.Store/server/redirect.c b/src/Extensions/Banshee.AmazonMp3.Store/server/redirect.c
index 0eeedbd..f7ed3fc 100644
--- a/src/Extensions/Banshee.AmazonMp3.Store/server/redirect.c
+++ b/src/Extensions/Banshee.AmazonMp3.Store/server/redirect.c
@@ -116,7 +116,7 @@ main (gint argc, gchar **argv)
         );
     } else if (strcmp (action, "sign_out") == 0) {
         dest_url = g_strdup_printf (
-            "http://www.amazon.%s/gp/help/customer/sign-out.html/ref=ya__lo?ie=UTF8&returnPath=%%2F%s";,
+            "http://www.amazon.%s/gp/flex/sign-out.html/ref=gno_signout?ie=UTF8&path=%%2F%s&signIn=1&useRedirectOnSuccess=1&action=sign-out";,
             domain, home_path
         );
     } else if (strcmp (action, "about") == 0) {



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]