Skip to content

Commit 84b4a0f

Browse files
Bump distro and fix a typo (microsoft#189381)
both related to removing vscode-encrypt.
1 parent 1e0b12d commit 84b4a0f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "code-oss-dev",
33
"version": "1.82.0",
4-
"distro": "2a9b1552a828c44e6454db2848ba954f2497a6b3",
4+
"distro": "bc3b9188018c76ecdd69d813c95c5101e5f3da5e",
55
"author": {
66
"name": "Microsoft Corporation"
77
},

src/vs/platform/encryption/electron-main/encryptionMainService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export class EncryptionMainService implements IEncryptionMainService {
4646
try {
4747
parsedValue = JSON.parse(value);
4848
if (!parsedValue.data) {
49-
throw new Error(`[EncryptionMainService] Invalid encrypted valu: ${value}`);
49+
throw new Error(`[EncryptionMainService] Invalid encrypted value: ${value}`);
5050
}
5151
const bufferToDecrypt = Buffer.from(parsedValue.data);
5252

0 commit comments

Comments
 (0)