This commit is contained in:
Jonathan Jenne 2024-01-18 15:54:48 +01:00
commit a3e1d34a7a

View File

@ -169,8 +169,11 @@ Public Class PDFEmbeds
Dim oExtension As String = oFileInfo.Extension
If String.IsNullOrWhiteSpace(oExtension) Then
Logger.Error("The embedded file [{0}] does not have any extension. Skipping.")
Logger.Error("The embedded file [{0}] does not have any extension. Skipping.", oFileName)
Continue For
Else
' Jetzt wissen wir, das es eine Extension gibt!
oExtension = oFileInfo.Extension.ToUpper.Substring(1)
End If
If pExtensions.Contains(oExtension) Then