Skip to content
Snippets Groups Projects

Fix: Fix errors in email notification for PID requests

Merged Hanna Führ requested to merge Hotfix/2354-emailNotificationPID into dev
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
@@ -109,8 +109,8 @@ namespace Coscine.Api.NotificationBus.Controllers
{
language = _languageModel.GetById(new Guid(user.LanguageId.ToString())).Abbreviation;
}
var template = (JObject)(action.Template[channelName][language]);
var template = JObject.Parse(action.Template[channelName][language].ToString(Newtonsoft.Json.Formatting.None));
var stubble = new StubbleBuilder()
.Configure(settings =>
{
Loading