We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 396951e commit e04526cCopy full SHA for e04526c
1 file changed
src/_data/depctrl.js
@@ -160,6 +160,9 @@ const resolveReverseDependencies = async (feeds) => {
160
161
// fetch single feed
162
const fetchFeed = (url) => {
163
+ if (!url.startsWith("https://") && !url.startsWith("http://")) {
164
+ url = "http://" + url;
165
+ }
166
return limitedWebRequest(url, "text")
167
.then((feedResponse) => {
168
// remove trailing commas. Not ideal as there can be false positives
0 commit comments