Skip to content
Merged
Show file tree
Hide file tree
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: 4 additions & 0 deletions lib/plugins/validators/sync/04_ssl_validator.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,9 @@ export default {
if (sslProtocol && !hasSSL) {
link.rel.push('ssl');
}

if (/^https:\/\/[^\/\?]+:443\/?/.test(link.href)) {
link.href = link.href.replace(/^(https:\/\/[^\/\?]+):443/, '$1');
}
}
};
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
export default {

// Should go after 04_sll_validator that replaces ":443" with ''

prepareLink: function(whitelistRecord, options, link, plugin) {

if (!link.error
Expand Down
2 changes: 1 addition & 1 deletion plugins/domains/instagram.com/instagram.com.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export default {
// Remove below error when and if it's fixed. Validators will remove the link
og_image.error = 'Unfortunatelly Instagram\'s OG image is cropped';
} else if (!oembed.thumbnail_url) {
og_image.message = "Unfortunatelly, Instagram removed full images on November 3, 2025";
// og_image.message = "Unfortunatelly, Instagram removed full images on November 3, 2025"; // images seem to be OK as of Dec 12, 2025
}
links.push(og_image);
}
Expand Down