diff --git a/src/serviceProviders/activitypub.js b/src/serviceProviders/activitypub.js
index fcc8ec2..b747a33 100644
--- a/src/serviceProviders/activitypub.js
+++ b/src/serviceProviders/activitypub.js
@@ -107,7 +107,7 @@ export const functions = {
 }
 
 const _processNodeinfo = async (/** @type {string} */ domain) => {
-  const nodeinfoRef = await fetch(`http://${domain}/.well-known/nodeinfo`)
+  const nodeinfoRef = await fetch(`https://${domain}/.well-known/nodeinfo`)
     .then(res => {
       if (res.status !== 200) {
         throw new Error('HTTP Status was not 200')