From 33ebaed2bf6f1d4ab4fa897156b41fb71bf9d4d8 Mon Sep 17 00:00:00 2001 From: Kristian Polso Date: Tue, 5 Jun 2018 10:19:42 +0300 Subject: [PATCH] Change API Urls to include https --- content/.vuepress/components/GithubFeed.vue | 2 +- content/.vuepress/components/Step1.vue | 2 +- content/.vuepress/components/Step3.vue | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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, ' '); });