From 277e2e53409de1045cf192e4998b88b7718109c3 Mon Sep 17 00:00:00 2001 From: Ryan Tharp Date: Sun, 9 Feb 2020 23:58:01 -0800 Subject: [PATCH] make uploadPrivateAttachment static and use window.tokenlessFileServerAdnAPI, warn if no token yet --- js/modules/loki_file_server_api.js | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/js/modules/loki_file_server_api.js b/js/modules/loki_file_server_api.js index c38609467..9e097523b 100644 --- a/js/modules/loki_file_server_api.js +++ b/js/modules/loki_file_server_api.js @@ -245,6 +245,9 @@ class LokiHomeServerInstance extends LokiFileServerInstance { isPrimary: isPrimary ? '1' : '0', authorisations, }; + if (!this.token) { + log.warn('_setOurDeviceMapping no token yet'); + } return this._server.setSelfAnnotation( DEVICE_MAPPING_USER_ANNOTATION_TYPE, content @@ -269,11 +272,14 @@ class LokiHomeServerInstance extends LokiFileServerInstance { // you only upload to your own home server // you can download from any server... uploadAvatar(data) { + if (!this.token) { + log.warn('uploadAvatar no token yet'); + } return this._server.uploadAvatar(data); } - uploadPrivateAttachment(data) { - return this._server.uploadData(data); + static uploadPrivateAttachment(data) { + return window.tokenlessFileServerAdnAPI.uploadData(data); } clearOurDeviceMappingAnnotations() { @@ -298,6 +304,7 @@ class LokiFileServerFactoryAPI { if (!thisServer) { thisServer = new LokiHomeServerInstance(this.ourKey); log.info(`Registering HomeServer ${serverUrl}`); + // not await, so a failure or slow connection doesn't hinder loading of the app thisServer.establishConnection(serverUrl); this.servers.push(thisServer); }