@vue-skuilder/db 0.2.12 → 0.2.14

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.
@@ -6872,6 +6872,11 @@ Currently logged-in as ${this._username}.`
6872
6872
  return { ok: true };
6873
6873
  }
6874
6874
  const ret = await this.syncStrategy.logout();
6875
+ try {
6876
+ localStorage.removeItem("sk-guest-uuid");
6877
+ } catch (e) {
6878
+ logger.warn("localStorage not available (Node.js environment):", e);
6879
+ }
6875
6880
  this._username = await this.syncStrategy.getCurrentUsername();
6876
6881
  await this.init();
6877
6882
  return ret;