Merge branch 'clearnet' of github.com:loki-project/loki-messenger into react-refactor

pull/1381/head
Audric Ackermann 4 years ago
commit 5e43210493
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -75,8 +75,10 @@ jobs:
sudo apt-get install -y hunspell-en-us sudo apt-get install -y hunspell-en-us
sudo locale-gen en_US.UTF-8 sudo locale-gen en_US.UTF-8
sudo dpkg-reconfigure locales sudo dpkg-reconfigure locales
echo "::stop-commands::`echo -n ${{ github.token }} | sha256sum | head -c 64`"
echo ::set-env name=DISPLAY:::9.0 echo ::set-env name=DISPLAY:::9.0
echo ::set-env name=LANG::en_US.UTF-8 echo ::set-env name=LANG::en_US.UTF-8
echo "::`echo -n ${{ github.token }} | sha256sum | head -c 64`::"
- name: Test - name: Test
uses: GabrielBB/xvfb-action@v1.0 uses: GabrielBB/xvfb-action@v1.0

@ -2,7 +2,7 @@
"name": "session-desktop", "name": "session-desktop",
"productName": "Session", "productName": "Session",
"description": "Private messaging from your desktop", "description": "Private messaging from your desktop",
"version": "1.4.0", "version": "1.4.2",
"license": "GPL-3.0", "license": "GPL-3.0",
"author": { "author": {
"name": "Loki Project", "name": "Loki Project",

@ -457,7 +457,7 @@ window.lokiFeatureFlags = {
useOnionRequests: true, useOnionRequests: true,
useOnionRequestsV2: true, useOnionRequestsV2: true,
useFileOnionRequests: true, useFileOnionRequests: true,
useFileOnionRequestsV2: false, // more compact encoding of files in response useFileOnionRequestsV2: true, // more compact encoding of files in response
enableSenderKeys: true, enableSenderKeys: true,
onionRequestHops: 3, onionRequestHops: 3,
debugMessageLogs: process.env.ENABLE_MESSAGE_LOGS, debugMessageLogs: process.env.ENABLE_MESSAGE_LOGS,

@ -142,7 +142,8 @@ async function buildOnionCtxs(
if (relayingToFinalDestination && fileServerOptions) { if (relayingToFinalDestination && fileServerOptions) {
let target = useV2 ? '/loki/v2/lsrpc' : '/loki/v1/lsrpc'; let target = useV2 ? '/loki/v2/lsrpc' : '/loki/v1/lsrpc';
if (window.lokiFeatureFlags.useFileOnionRequestsV2) { const isCallToPn = fileServerOptions?.host === 'live.apns.getsession.org';
if (!isCallToPn && window.lokiFeatureFlags.useFileOnionRequestsV2) {
target = '/loki/v3/lsrpc'; target = '/loki/v3/lsrpc';
} }

Loading…
Cancel
Save