diff options
| author | Andrej Mihajlov <and@mullvad.net> | 2018-07-16 20:54:39 +0200 |
|---|---|---|
| committer | Andrej Mihajlov <and@mullvad.net> | 2018-07-16 20:54:39 +0200 |
| commit | 508fc0775e62f9361df2814cad5229b7706d4095 (patch) | |
| tree | 055ad745e22cb3b1cbbe91571d57a08070d4a525 /app/app.android.js | |
| parent | 8e219adbcc3523badf5a0351ca4a8e91596b4114 (diff) | |
| parent | 313d3bf47cd3cc91bc34143deaa930d4bbea14ce (diff) | |
| download | mullvadvpn-508fc0775e62f9361df2814cad5229b7706d4095.tar.xz mullvadvpn-508fc0775e62f9361df2814cad5229b7706d4095.zip | |
Merge branch 'add-eslint-promises'
Diffstat (limited to 'app/app.android.js')
| -rw-r--r-- | app/app.android.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/app.android.js b/app/app.android.js index e16c3cc6a6..0cb07a8600 100644 --- a/app/app.android.js +++ b/app/app.android.js @@ -39,7 +39,9 @@ DeviceEventEmitter.addListener('com.mullvad.daemon-connection-ready', async (_ev }); MobileAppBridge.startBackend() - .then((_response) => {}) + .then((_response) => { + return; + }) .catch((e) => { log.error('Failed starting backend:', e); }); |
