Browse Source

turn off debug

develop
dskvr 2 years ago
parent
commit
e2d49df2d2
  1. 2
      src/components/relays/tasks/RefreshTask.vue
  2. 2
      src/store/user.js

2
src/components/relays/tasks/RefreshTask.vue

@ -174,7 +174,7 @@ const localMethods = {
getInfo: true, getInfo: true,
getIdentities: true, getIdentities: true,
run: true, run: true,
debug: true, // debug: true,
connectTimeout: this.getDynamicTimeout, connectTimeout: this.getDynamicTimeout,
readTimeout: this.getDynamicTimeout, readTimeout: this.getDynamicTimeout,
writeTimeout: this.getDynamicTimeout, writeTimeout: this.getDynamicTimeout,

2
src/store/user.js

@ -79,7 +79,7 @@ export const useUserStore = defineStore('user', {
if(obj instanceof Object && Object.keys(obj).length) if(obj instanceof Object && Object.keys(obj).length)
this.kind3 = obj this.kind3 = obj
else else
this.kind3 = Object.assign(await this.retrieveKind3(), this.kind3) this.kind3 = Object.assign(this.kind3, await this.retrieveKind3())
}, },
setPublicKey: function(pubKey){ this.pubKey = pubKey }, setPublicKey: function(pubKey){ this.pubKey = pubKey },
setProfile: function(stringifiedEvContent){ setProfile: function(stringifiedEvContent){

Loading…
Cancel
Save