Problem/Motivation

I just installed this module. In the mails I receive all links have a double slash before the title of the node:
https://www.example.com//node-title

Comments

promes created an issue.

grdv’s picture

Same here.
Links in "new comments posted" are correct.
Links in "Recent new or updated pages" contain an erroneous extra slash.

lkuttner’s picture

We are seeing this also.

lkuttner’s picture

This edit to line 670 of .../modules/contrib/notify/src/notify.php fixed it for me.

-  $link = $host . '/' . Url::fromUri('internal:/node/' . $node->id())->toString();
+  $link = $host . Url::fromUri('internal:/node/' . $node->id())->toString();