Merge branch 'devel' into next

This commit is contained in:
Koitharu
2023-07-18 12:04:41 +03:00
13 changed files with 131 additions and 15 deletions

View File

@@ -23,7 +23,7 @@ class ImageFileFilter : FilenameFilter, FileFilter {
return isExtensionValid(ext)
}
private fun isExtensionValid(ext: String): Boolean {
fun isExtensionValid(ext: String): Boolean {
return ext == "png" || ext == "jpg" || ext == "jpeg" || ext == "webp"
}
}