@eluvio/elv-client-js 4.0.95 → 4.0.96

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.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eluvio/elv-client-js",
3
- "version": "4.0.95",
3
+ "version": "4.0.96",
4
4
  "description": "Javascript client for the Eluvio Content Fabric",
5
5
  "main": "src/index.js",
6
6
  "author": "Kevin Talmadge",
@@ -396,7 +396,7 @@ class ElvWalletClient {
396
396
  * @methodGroup Login
397
397
  */
398
398
  async LogOut() {
399
- if(this.__authorization.nonce) {
399
+ if(this.__authorization && this.__authorization.nonce) {
400
400
  try {
401
401
  await this.client.signer.ReleaseCSAT({accessToken: this.AuthToken()});
402
402
  } catch(error) {