Forgot to add showDebugOutputOnConsole

This commit is contained in:
dankito 2024-11-30 21:10:24 +01:00
parent e596b9483b
commit ed5f272c07
1 changed files with 3 additions and 1 deletions

View File

@ -17,11 +17,13 @@ open class ListenForNewMailsOptions(
emailFolderName: String = "INBOX",
connectTimeoutSeconds: Int = 5,
showDebugOutputOnConsole: Boolean = false,
onError: ((FetchEmailError) -> Unit)? = null,
onEmailReceived: (Email) -> Unit
) : FetchEmailsOptions(
null,
downloadMessageBody, downloadOnlyPlainTextOrHtmlMessageBody, null,
downloadAttachmentsWithExtensions, attachmentsDownloadDirectory,
emailFolderName, connectTimeoutSeconds, onError, onEmailReceived
emailFolderName, connectTimeoutSeconds, showDebugOutputOnConsole, onError, onEmailReceived
)