Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions odin/src/components/HelloWorld.vue
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@
</v-card-title>

<v-card-text class="pt-5">
Use <a href="http://prefix.cc" target="PrefixCC">prefix.cc</a> service to look for common prefixes.
Use <a href="https://prefix.cc" target="PrefixCC">prefix.cc</a> service to look for common prefixes.
<v-row>
<v-col cols="6">
<v-text-field
Expand Down Expand Up @@ -1189,7 +1189,7 @@
prefixLookUp: function () {
this.prefixcc_loading = true;
let format = this.prefixcc_format_selected.toLowerCase();
fetch(`http://prefix.cc/`+this.prefixcc_term+`.file.`+format, {
fetch(`https://prefix.cc/`+this.prefixcc_term+`.file.`+format, {
method: 'GET'
}
).then(response => {
Expand Down