You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some package have their /readme.txt content returned as text/plain; charset=utf-8, like text-show, and others have the content type set as text/plain, like cpsa.
I have two questions:
Where would this difference come from;
Couldn't we force all .txt files to be sent as text/plain; charset=utf-8?
Cheers
The text was updated successfully, but these errors were encountered:
txt falls through to the mimeTypes map from happstack, which should be just "text/plain" -- for some reason one of those readmes doesn't match that (not sure why!) so we get the default which also has the utf8.
We could add "txt" and "text" directly to customMimeTypes to override them and always ensure the utf8. A pr doing so would be welcome.
Some package have their
/readme.txt
content returned astext/plain; charset=utf-8
, like text-show, and others have the content type set astext/plain
, like cpsa.I have two questions:
.txt
files to be sent astext/plain; charset=utf-8
?Cheers
The text was updated successfully, but these errors were encountered: