Changes between Initial Version and Version 1 of Ticket #26227, comment 14
- Timestamp:
- May 6, 2020, 2:05:26 PM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #26227, comment 14
initial v1 1 1 For what it's worth, K-9 email app in Android also displays it wrong when the filename contains any non-ascii character. 2 2 [[Image(https://i.imgur.com/f4vzKPJ.jpg)]] 3 4 In my case I have workarounded it removing accents like 5 6 7 {{{ 8 import unidecode 9 filename = unidecode.unidecode(filename) 10 }}} 11