From 2f8ef8bd1a07d4207888ae1a52c9bf44de7aaef5 Mon Sep 17 00:00:00 2001 From: "E. S." Date: Mon, 5 May 2025 04:06:45 +0300 Subject: [PATCH] 4in1: fix post urls in meta tags --- src/handlers/foreignone/MainHandler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/handlers/foreignone/MainHandler.php b/src/handlers/foreignone/MainHandler.php index 7964ad3..5a34dd5 100644 --- a/src/handlers/foreignone/MainHandler.php +++ b/src/handlers/foreignone/MainHandler.php @@ -125,7 +125,7 @@ class MainHandler $this->skin->meta->title = $pt->title; $this->skin->meta->description = $pt->getDescriptionPreview(155); - $this->skin->meta->url = $config['domain'].$post->getUrl(); + $this->skin->meta->url = 'https://'.$config['domain'].$post->getUrl(); if ($pt->keywords) $this->skin->meta->keywords = $pt->keywords; if (($img = $pt->getFirstImage()) !== null)