diff --git a/content/.vuepress/components/GithubFeed.vue b/content/.vuepress/components/GithubFeed.vue index c22b105..3527ffb 100644 --- a/content/.vuepress/components/GithubFeed.vue +++ b/content/.vuepress/components/GithubFeed.vue @@ -94,7 +94,7 @@ export default { var component = this; - component.$http.get('//beta.lbry.tech/github-feed').then(function(response) { + component.$http.get('https://beta.lbry.tech/github-feed').then(function(response) { component.events = response.body; }); diff --git a/content/.vuepress/components/Step1.vue b/content/.vuepress/components/Step1.vue index ad4c423..6c9a419 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('//beta.lbry.tech/forward?method=resolve&uri=' + this.address).then(function(response) { + this.$http.get('https://betalbry.tech/forward?method=resolve&uri=' + this.address).then(function(response) { component.isLoading = false; component.jsonData = JSON.stringify(response.body, null, ' '); }); diff --git a/content/.vuepress/components/Step3.vue b/content/.vuepress/components/Step3.vue index 8173ae4..14504d6 100644 --- a/content/.vuepress/components/Step3.vue +++ b/content/.vuepress/components/Step3.vue @@ -102,7 +102,7 @@ export default { component.jsonData = ''; component.isLoading = true; component.exampleCode = '# Example code using the daemon\ncurl \'http://localhost:5279\' --data \'{"method":"wallet_send","params":{"claim_id":"' + this.address + '","amount":' + this.amount + '}}\''; - this.$http.get('//beta.lbry.tech/forward?method=wallet_send&claim_id=' + this.address + '&amount=' + this.amount).then(function(response) { + this.$http.get('https://beta.lbry.tech/forward?method=wallet_send&claim_id=' + this.address + '&amount=' + this.amount).then(function(response) { component.isLoading = false; component.jsonData = JSON.stringify(response.body, null, ' '); });