You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 2, 2022. It is now read-only.
The reply object on hashtagItemsChanged is stringified once too often, I have to parse it twice: this.hashtag = JSON.parse(JSON.parse(reply.data));
Example of reply on hashtagItems:
{"name":"Settler","stats":{"paidNoConflict":69,"resolved":23,"seekers":42,"providers":12},"description":"Settler is the first amazing hashtag","maintainer":{"avatarHash":"","username":"Mungo Weber","address":"0x3847F87F3EcF4a0e57djF73B2Db92134e1983ef5"},"hashtagFee":500000000000000000,"items":[{}]}
Example of reply on hashtagItemsChanged:
"{\"name\":\"Settler\",\"stats\":{\"paidNoConflict\":69,\"resolved\":23,\"seekers\":42,\"providers\":12},\"description\":\"Settler is the first amazing hashtag\",\"maintainer\":{\"avatarHash\":\"\",\"username\":\"Mungo Weber\",\"address\":\"0x3847F87F3EcF4a0e57djF73B2Db92134e1983ef5\"},\"hashtagFee\":500000000000000000,\"items\":[{}]}"
Notice the extra quotation marks
The text was updated successfully, but these errors were encountered:
The reply object on hashtagItemsChanged is stringified once too often, I have to parse it twice:
this.hashtag = JSON.parse(JSON.parse(reply.data));
Example of reply on hashtagItems:
Example of reply on hashtagItemsChanged:
Notice the extra quotation marks
The text was updated successfully, but these errors were encountered: