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,
getIdentities: true,
run: true,
debug: true,
// debug: true,
connectTimeout: this.getDynamicTimeout,
readTimeout: 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)
this.kind3 = obj
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 },
setProfile: function(stringifiedEvContent){

Loading…
Cancel
Save