Skip to content

Commit 3563212

Browse files
committed
fix: linux-x64 sse42 is always false
1 parent c567400 commit 3563212

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
@@ -2,7 +2,7 @@
22
"name": "session-desktop",
33
"productName": "Session",
44
"description": "Private messaging from your desktop",
5-
"version": "1.16.9",
5+
"version": "1.16.10",
66
"license": "GPL-3.0",
77
"author": {
88
"name": "Session Foundation",

ts/node/sharp_support/sharpSupport.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ function sse42FromCPUInfo() {
3030

3131
const sseFlagFound = flags.includes('sse4_2');
3232
console.info('SSE 4.2 flag found:', sseFlagFound);
33-
return sseFlagFound && false;
33+
return sseFlagFound;
3434
}
3535
return false;
3636
} catch (error) {

0 commit comments

Comments
 (0)