From f6dd8994d6b00e30862b42b18b5c8694df00bc1b Mon Sep 17 00:00:00 2001
From: David Monjoie <dmo@odoo.com>
Date: Mon, 14 Dec 2015 14:51:27 +0100
Subject: [PATCH] [FIX] mail: fixed redirect to messaging url

I checked with aab, and action definition comes after # and not ?.
---
 addons/mail/controllers/main.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/addons/mail/controllers/main.py b/addons/mail/controllers/main.py
index 1d1a77e04d71..13a56f02e3e4 100644
--- a/addons/mail/controllers/main.py
+++ b/addons/mail/controllers/main.py
@@ -18,7 +18,7 @@ class MailController(http.Controller):
 
     def _redirect_to_messaging(self):
         messaging_action = request.env['mail.thread']._get_inbox_action_xml_id()
-        url = '/web?%s' % url_encode({'action': messaging_action})
+        url = '/web#%s' % url_encode({'action': messaging_action})
         return werkzeug.utils.redirect(url)
 
     @http.route('/mail/receive', type='json', auth='none')
-- 
GitLab