diff --git a/auth_session_timeout/__manifest__.py b/auth_session_timeout/__manifest__.py index 031ed28b9..422e98965 100644 --- a/auth_session_timeout/__manifest__.py +++ b/auth_session_timeout/__manifest__.py @@ -14,7 +14,7 @@ 'maintainer': 'Odoo Community Association (OCA)', 'website': "http://acsone.eu", 'category': 'Tools', - 'version': '10.0.1.0.0', + 'version': '10.0.1.0.1', 'license': 'AGPL-3', 'data': [ 'data/ir_config_parameter_data.xml' diff --git a/auth_session_timeout/models/res_users.py b/auth_session_timeout/models/res_users.py index 00b0833cc..308262476 100644 --- a/auth_session_timeout/models/res_users.py +++ b/auth_session_timeout/models/res_users.py @@ -90,7 +90,7 @@ class ResUsers(models.Model): # Else, conditionally update session modified and access times ignored_urls = self._auth_timeout_get_ignored_urls() - if http.request.http.request.path not in ignored_urls: + if http.request.httprequest.path not in ignored_urls: if 'path' not in locals(): path = http.root.session_store.get_session_filename( session.sid,