Add ".properties" to the text file extensions list

This commit is contained in:
Matéo Duparc 2021-08-27 19:48:05 +02:00
parent c2c1e4b1e9
commit faeab5d3f6
Signed by: hardcoresushi
GPG Key ID: 007F84120107191E
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ class ConstValues {
Pair("image", listOf("png", "jpg", "jpeg", "gif", "bmp")),
Pair("video", listOf("mp4", "webm", "mkv", "mov")),
Pair("audio", listOf("mp3", "ogg", "m4a", "wav", "flac")),
Pair("text", listOf("txt", "json", "conf", "log", "xml", "java", "kt", "py", "pl", "rb", "go", "c", "h", "cpp", "hpp", "rs", "sh", "bat", "js", "html", "css", "php", "yml", "yaml", "toml", "ini", "md"))
Pair("text", listOf("txt", "json", "conf", "log", "xml", "java", "kt", "py", "pl", "rb", "go", "c", "h", "cpp", "hpp", "rs", "sh", "bat", "js", "html", "css", "php", "yml", "yaml", "toml", "ini", "md", "properties"))
)
fun isExtensionType(extensionType: String, path: String): Boolean {