From cfeb8a5185cd325d8687908c9976d5f7a9755f4a Mon Sep 17 00:00:00 2001
From: Romain Derie <rde@odoo.com>
Date: Mon, 22 Jul 2019 09:55:45 +0000
Subject: [PATCH] [FIX] mail: remove useless hasattr on get_base_url
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

This check was introduced with d82b897ea15b in 12.0 where `get_base_url` was
not yet a model method.

Since f727cd2645, in saas-12.5, that method is now on model, making the
`hasattr` check useless.

closes odoo/odoo#35057

Signed-off-by: Jérémy Kersten (jke) <jke@openerp.com>
---
 addons/mail/models/mail_thread.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/addons/mail/models/mail_thread.py b/addons/mail/models/mail_thread.py
index 757a77735f3c..27357c8d8cb2 100644
--- a/addons/mail/models/mail_thread.py
+++ b/addons/mail/models/mail_thread.py
@@ -2324,7 +2324,7 @@ class MailThread(models.AbstractModel):
             params['token'] = token
 
         link = '%s?%s' % (base_link, url_encode(params))
-        if self and hasattr(self, 'get_base_url'):
+        if self:
             link = self[0].get_base_url() + link
 
         return link
-- 
GitLab