@eluvio/elv-client-js 3.1.89 → 3.1.90

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package-lock.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eluvio/elv-client-js",
3
- "version": "3.1.89",
3
+ "version": "3.1.90",
4
4
  "lockfileVersion": 1,
5
5
  "requires": true,
6
6
  "dependencies": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eluvio/elv-client-js",
3
- "version": "3.1.89",
3
+ "version": "3.1.90",
4
4
  "description": "Javascript client for the Eluvio Content Fabric",
5
5
  "main": "src/ElvClient.js",
6
6
  "author": "Kevin Talmadge",
@@ -144,7 +144,7 @@ class AuthorizationClient {
144
144
  this.noCache = true;
145
145
  }
146
146
 
147
- if(this.client.signer && this.client.signer.remoteSigner) {
147
+ if(channelAuth && this.client.signer && this.client.signer.remoteSigner) {
148
148
  // Channel auth not supported for remote signer, use a self-signed no-auth token instead
149
149
  noAuth = true;
150
150
  channelAuth = false;
@@ -204,7 +204,7 @@ class AuthorizationClient {
204
204
  addr: Utils.FormatAddress(((this.client.signer && this.client.signer.address) || ""))
205
205
  };
206
206
 
207
- if(!(this.noAuth || noAuth)) {
207
+ if(!(this.noAuth || noAuth) && !this.client.signer.remoteSigner) {
208
208
  const { transactionHash } = await this.MakeAccessRequest({
209
209
  libraryId,
210
210
  objectId,