Fix subject with single quotes

This commit is contained in:
Jonathan Jenne
2022-11-02 13:00:44 +01:00
parent 9178a3784c
commit 4beff2f34d
2 changed files with 8 additions and 5 deletions

View File

@@ -26,6 +26,7 @@ Public Class clsEmailIMAP
oListuids = _limilab.IMAPGetMessageIDs_AllMails()
If IsNothing(oListuids) Then
Logger.Warn("List of UIDs was Nothing. Returning False.")
Return False
Else
If oListuids.Count > 0 Then
@@ -35,8 +36,10 @@ Public Class clsEmailIMAP
Else
Logger.Debug("FetchIMAPMessagesLimilab - No Emails found!")
End If
Return True
End If
Return True
Catch ex As Exception
Logger.Error(ex)
Return False