From 266495a6115c743a5a88cb6bee58279ea8d93bad Mon Sep 17 00:00:00 2001 From: Leigh Pointer Date: Sat, 3 Aug 2024 12:26:33 +0200 Subject: [PATCH] Removed the extra ";//" from the Log Manager {alias.Protocol} return with ";//" --- Oqtane.Server/Infrastructure/LogManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Oqtane.Server/Infrastructure/LogManager.cs b/Oqtane.Server/Infrastructure/LogManager.cs index 59c51ccd..16e08a78 100644 --- a/Oqtane.Server/Infrastructure/LogManager.cs +++ b/Oqtane.Server/Infrastructure/LogManager.cs @@ -210,7 +210,7 @@ namespace Oqtane.Infrastructure if (alias != null) { subject = $"{alias.Name} Site {log.Level} Notification"; - body = $"Log Message: {log.Message}

Please visit {alias.Protocol}://{alias.Name}/admin/log?id={log.LogId} for more information"; + body = $"Log Message: {log.Message}

Please visit {alias.Protocol}{alias.Name}/admin/log?id={log.LogId} for more information"; } foreach (var userrole in _userRoles.GetUserRoles(RoleNames.Host, log.SiteId.Value))