Skip to content

Commit

Permalink
Actually close the link tag
Browse files Browse the repository at this point in the history
  • Loading branch information
Leone25 authored Apr 29, 2024
1 parent 0ff0185 commit 8f46359
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Template.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public static function create(): Plates
public static function telegramColumn($nickname, $id): string
{
if (isset($nickname)) {
return '<a href="https://t.me/' . $nickname . '">@' . $nickname;
return '<a href="https://t.me/' . $nickname . '">@' . $nickname . '</a>';
} elseif (isset($id)) {
return 'ID Only';
} else {
Expand Down

0 comments on commit 8f46359

Please sign in to comment.