Add one more mime-type to OPML file picker (should fix #195)

This commit is contained in:
Shinokuni 2024-09-14 14:13:41 +02:00
parent cf9d307f00
commit fc1a1c9491
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ object ApiUtils {
const val LAST_MODIFIED_HEADER = "Last-Modified"
const val IF_MODIFIED_HEADER = "If-Modified-Since"
val OPML_MIMETYPES = listOf("application/xml", "text/xml", "text/x-opml")
val OPML_MIMETYPES = listOf("application/xml", "text/xml", "text/x-opml", "application/octet-stream")
private const val RSS_CONTENT_TYPE_REGEX = "([^;]+)"