Fixes (#1037)
* When downloading bookmarks, prepend the images with chapterId to ensure there are no conflicts. * Fixed a case where email service wasn't using the custom email service. * Changed how we render some text in search results * Update the recently when we receive scan events
This commit is contained in:
parent
288acbaa70
commit
90de87a49f
5 changed files with 17 additions and 26 deletions
|
|
@ -50,7 +50,8 @@ public class EmailService : IEmailService
|
|||
|
||||
public async Task SendConfirmationEmail(ConfirmationEmailDto data)
|
||||
{
|
||||
var success = await SendEmailWithPost(DefaultApiUrl + "/api/email/confirm", data);
|
||||
var emailLink = (await _unitOfWork.SettingsRepository.GetSettingAsync(ServerSettingKey.EmailServiceUrl)).Value;
|
||||
var success = await SendEmailWithPost(emailLink + "/api/email/confirm", data);
|
||||
if (!success)
|
||||
{
|
||||
_logger.LogError("There was a critical error sending Confirmation email");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue