1
0
mirror of https://github.com/Kovah/LinkAce.git synced 2025-02-24 11:13:02 +01:00

Fix an issue with title not being parsed in meta helper

This commit is contained in:
Kovah 2019-05-07 15:09:27 +02:00
parent 5422d9097d
commit fd04b3d01c
No known key found for this signature in database
GPG Key ID: AAAA031BA9830D7B

View File

@ -56,7 +56,7 @@ class LinkAce
?? $fallback['description'];
return [
'title' => $title,
'title' => $title ?? $fallback['title'],
'description' => $description,
];
}