By default not downloading any attachments anymore

This commit is contained in:
dankito 2024-11-28 01:55:18 +01:00
parent 922fa629ae
commit 5abfa0b641
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ open class FetchEmailsOptions(
val onEmailReceived: ((Email) -> Unit)? = null
) {
companion object {
val DefaultDownloadedAttachmentsWithExtensions = listOf("pdf", "xml")
val DefaultDownloadedAttachmentsWithExtensions = emptyList<String>()
val DefaultAttachmentsDownloadDirectory: File = File(System.getProperty("java.io.tmpdir"), "eInvoices").also { it.mkdirs() }
}