From 55a9c73ff76f491a2c244e44012159bb06a03cd3 Mon Sep 17 00:00:00 2001 From: Kristian Polso Date: Thu, 7 Jun 2018 17:22:03 +0300 Subject: [PATCH] Typo in hook url --- content/.vuepress/components/Step1.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/.vuepress/components/Step1.vue b/content/.vuepress/components/Step1.vue index 6c9a419..cc9bb26 100644 --- a/content/.vuepress/components/Step1.vue +++ b/content/.vuepress/components/Step1.vue @@ -100,7 +100,7 @@ export default { component.jsonData = ''; component.isLoading = true; component.exampleCode = '# Example code using the daemon\ncurl \'http://localhost:5279\' --data \'{"method":"resolve","params":{"uri":"' + this.address + '"}}\''; - this.$http.get('https://betalbry.tech/forward?method=resolve&uri=' + this.address).then(function(response) { + this.$http.get('https://lbry.tech/forward?method=resolve&uri=' + this.address).then(function(response) { component.isLoading = false; component.jsonData = JSON.stringify(response.body, null, ' '); });