pull/289/head
Mikunj 6 years ago
parent d4de4b13dd
commit 986d34bbd9

@ -4,7 +4,6 @@ about: Create a report to help us improve
title: '' title: ''
labels: '' labels: ''
assignees: '' assignees: ''
--- ---
**Describe the bug** **Describe the bug**
@ -17,6 +16,7 @@ Steps to reproduce the behavior:
If applicable, add screenshots or log files to help explain your problem. If applicable, add screenshots or log files to help explain your problem.
**Other information (please complete the following information):** **Other information (please complete the following information):**
- Device: [e.g. PC, Mac]
- OS: [e.g. Ubuntu 16.04, Windows 10] * Device: [e.g. PC, Mac]
- Loki messenger Version or Git commit hash: * OS: [e.g. Ubuntu 16.04, Windows 10]
* Loki messenger Version or Git commit hash:

@ -89,11 +89,11 @@ can public keys. To test the P2P functionality on the same machine, however, req
that each client binds their message server to a different port. that each client binds their message server to a different port.
You can use the following command to start a client bound to a different port. You can use the following command to start a client bound to a different port.
``` ```
yarn start-multi yarn start-multi
``` ```
For more than 2 clients, you can setup additional storage profiles and switch For more than 2 clients, you can setup additional storage profiles and switch
between them using the `NODE_APP_INSTANCE` environment variable and specifying a between them using the `NODE_APP_INSTANCE` environment variable and specifying a
new localServerPort in the config. new localServerPort in the config.
@ -149,12 +149,13 @@ So you wanna make a pull request? Please observe the following guidelines.
the translations in the translations in
[Transifex](https://www.transifex.com/projects/p/signal-desktop). [Transifex](https://www.transifex.com/projects/p/signal-desktop).
--> -->
* First, make sure that your `yarn ready` run passes - it's very similar to what our * First, make sure that your `yarn ready` run passes - it's very similar to what our
Continuous Integration servers do to test the app. Continuous Integration servers do to test the app.
* Never use plain strings right in the source code - pull them from `messages.json`! * Never use plain strings right in the source code - pull them from `messages.json`!
You **only** need to modify the default locale You **only** need to modify the default locale
[`_locales/en/messages.json`](_locales/en/messages.json). [`_locales/en/messages.json`](_locales/en/messages.json).
<!-- TODO: <!-- TODO:
Other locales are generated automatically based on that file and then periodically Other locales are generated automatically based on that file and then periodically
uploaded to Transifex for translation. --> uploaded to Transifex for translation. -->
* [Rebase](https://nathanleclaire.com/blog/2014/09/14/dont-be-scared-of-git-rebase/) your * [Rebase](https://nathanleclaire.com/blog/2014/09/14/dont-be-scared-of-git-rebase/) your

@ -1,7 +1,7 @@
/* global setTimeout, clearTimeout */ /* global setTimeout, clearTimeout */
const EventEmitter = require('events'); const EventEmitter = require('events');
const { isEmpty } = require('lodash') const { isEmpty } = require('lodash');
const offlinePingTime = 2 * 60 * 1000; // 2 minutes const offlinePingTime = 2 * 60 * 1000; // 2 minutes
@ -39,9 +39,10 @@ class LokiP2pAPI extends EventEmitter {
isOnline: false, isOnline: false,
}; };
const contactExists = isEmpty(baseDetails) const contactExists = isEmpty(baseDetails);
const { isOnline } = baseDetails; const { isOnline } = baseDetails;
const detailsChanged = baseDetails.address !== address || baseDetails.port !== port const detailsChanged =
baseDetails.address !== address || baseDetails.port !== port;
// If we had the contact details // If we had the contact details
// And we got a P2P message // And we got a P2P message
@ -52,7 +53,7 @@ class LokiP2pAPI extends EventEmitter {
// We also need to set the current contact details to show online // We also need to set the current contact details to show online
// because they get reset to `false` above // because they get reset to `false` above
this.setContactOnline(pubKey); this.setContactOnline(pubKey);
return return;
} }
/* /*

Loading…
Cancel
Save