Skip to content

Commit f2d4879

Browse files
authored
Merge pull request #1493 from Hirobreak/docid
using docid if exists
2 parents 68c4457 + 1833d6d commit f2d4879

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

electron_app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@
150150
"electron-notarize": "^0.1.1"
151151
},
152152
"dependencies": {
153-
"@criptext/api": "^0.15.37",
153+
"@criptext/api": "^0.17.0",
154154
"@criptext/data-transfer-client": "^0.1.1",
155155
"@criptext/electron-better-ipc": "^0.7.0-rc1-0.2",
156156
"@criptext/electron-push-receiver": "^2.1.3",

electron_app/src/utils/const.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const {
66
criptextInstallerType
77
} = require('./../../package.json');
88

9-
const API_CLIENT_VERSION = '9.0.0';
9+
const API_CLIENT_VERSION = '11.0.0';
1010
const LINK_DEVICES_FILE_VERSION = '6';
1111
const PROD_SOCKET_URL = 'wss://socket.criptext.com';
1212
const PROD_SERVER_URL = 'https://api.criptext.com';

electron_app/yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -115,10 +115,10 @@
115115
lodash "^4.2.0"
116116
to-fast-properties "^2.0.0"
117117

118-
"@criptext/api@^0.15.37":
119-
version "0.15.37"
120-
resolved "https://registry.yarnpkg.com/@criptext/api/-/api-0.15.37.tgz#9cfed4e381a80d57adb8bba56946a27490685449"
121-
integrity sha512-kHR8vBdKYd+NCUxkLUURiJIyl2dwAj1/XR4OnWHd6aIrm3ZUUBp9WXHrFRD879NOvQPHUSBt5bbn5qU/PKZdfw==
118+
"@criptext/api@^0.17.0":
119+
version "0.17.0"
120+
resolved "https://registry.yarnpkg.com/@criptext/api/-/api-0.17.0.tgz#7bc102b7c2afd6d971ee3b51c27e20e145cb8c99"
121+
integrity sha512-w7jxkzxlKqM371wyXrO8YUkgph8RhU5IxYdMmL9L0hx0tdbLAko8DHjHlub7yO2OmStEOUyk7k/RqBfEawlntA==
122122
dependencies:
123123
superagent "^3.8.2"
124124

email_mailbox/src/utils/ApiUtils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import {
1010
resultString
1111
} from './AESUtils';
1212

13-
const API_CLIENT_VERSION = '8.0.0';
13+
const API_CLIENT_VERSION = '11.0.0';
1414
const apiBaseUrl =
1515
!process.env.NODE_ENV || process.env.NODE_ENV === 'development'
1616
? process.env.REACT_APP_DEV_API_URL

email_mailbox/src/utils/FetchUtils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ const formEvents = events => {
5757
const data = {
5858
cmd: event.cmd,
5959
params: JSON.parse(event.params),
60-
rowid: event.rowid
60+
rowid: event.docid || event.rowid
6161
};
6262
eventsParsed.push(data);
6363
} catch (e) {}

0 commit comments

Comments
 (0)