tryton-sao 6.8.1 → 6.8.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG CHANGED
@@ -1,4 +1,9 @@
1
1
 
2
+ Version 6.8.2 - 2023-09-06
3
+ --------------------------
4
+ * Bug fixes (see mercurial logs for details)
5
+
6
+
2
7
  Version 6.8.1 - 2023-05-17
3
8
  --------------------------
4
9
  * Bug fixes (see mercurial logs for details)
@@ -1,7 +1,7 @@
1
1
  /* This file is part of Tryton. The COPYRIGHT file at the top level of
2
2
  this repository contains the full copyright notices and license terms. */
3
3
  var Sao = {
4
- __version__: '6.8.0',
4
+ __version__: '6.8.2',
5
5
  };
6
6
 
7
7
  (function() {
@@ -1431,7 +1431,8 @@ var Sao = {
1431
1431
  //Try to relog
1432
1432
  Sao.Session.renew(session).then(function() {
1433
1433
  if (async) {
1434
- Sao.rpc(args, session).then(dfd.resolve, dfd.reject);
1434
+ Sao.rpc(args, session, async, process_exception)
1435
+ .then(dfd.resolve, dfd.reject);
1435
1436
  } else {
1436
1437
  dfd.resolve();
1437
1438
  }
@@ -12241,7 +12242,7 @@ var Sao = {
12241
12242
  if (!text) {
12242
12243
  return;
12243
12244
  }
12244
- Sao.common.ask.run(Sao.i18n.gettext('Bookmark Name:', 'bookmark'))
12245
+ Sao.common.ask.run(Sao.i18n.gettext('Bookmark Name:'), 'bookmark')
12245
12246
  .then(name => {
12246
12247
  if (!name) {
12247
12248
  return;