Forgot to add showDebugOutputOnConsole
This commit is contained in:
parent
e596b9483b
commit
ed5f272c07
|
@ -17,11 +17,13 @@ open class ListenForNewMailsOptions(
|
||||||
emailFolderName: String = "INBOX",
|
emailFolderName: String = "INBOX",
|
||||||
connectTimeoutSeconds: Int = 5,
|
connectTimeoutSeconds: Int = 5,
|
||||||
|
|
||||||
|
showDebugOutputOnConsole: Boolean = false,
|
||||||
|
|
||||||
onError: ((FetchEmailError) -> Unit)? = null,
|
onError: ((FetchEmailError) -> Unit)? = null,
|
||||||
onEmailReceived: (Email) -> Unit
|
onEmailReceived: (Email) -> Unit
|
||||||
) : FetchEmailsOptions(
|
) : FetchEmailsOptions(
|
||||||
null,
|
null,
|
||||||
downloadMessageBody, downloadOnlyPlainTextOrHtmlMessageBody, null,
|
downloadMessageBody, downloadOnlyPlainTextOrHtmlMessageBody, null,
|
||||||
downloadAttachmentsWithExtensions, attachmentsDownloadDirectory,
|
downloadAttachmentsWithExtensions, attachmentsDownloadDirectory,
|
||||||
emailFolderName, connectTimeoutSeconds, onError, onEmailReceived
|
emailFolderName, connectTimeoutSeconds, showDebugOutputOnConsole, onError, onEmailReceived
|
||||||
)
|
)
|
Loading…
Reference in New Issue