Merge pull request #836 from neuroscr/tls-fix

fix no token detection conditions for logging a warning in file server library
pull/846/head
Ryan Tharp 5 years ago committed by GitHub
commit dfca294ede
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -245,7 +245,7 @@ class LokiHomeServerInstance extends LokiFileServerInstance {
isPrimary: isPrimary ? '1' : '0',
authorisations,
};
if (!this.token) {
if (!this._server.token) {
log.warn('_setOurDeviceMapping no token yet');
}
return this._server.setSelfAnnotation(
@ -272,7 +272,7 @@ class LokiHomeServerInstance extends LokiFileServerInstance {
// you only upload to your own home server
// you can download from any server...
uploadAvatar(data) {
if (!this.token) {
if (!this._server.token) {
log.warn('uploadAvatar no token yet');
}
return this._server.uploadAvatar(data);

Loading…
Cancel
Save