mirror of
https://github.com/Instadapp/chains.git
synced 2024-07-29 22:37:19 +00:00
Allow jpg logos
This commit is contained in:
parent
8797d88f22
commit
3f37cbda9d
|
@ -208,8 +208,8 @@ fun checkIcon(icon: File, withIconDownload: Boolean, allIconCIDs: MutableSet<Str
|
|||
}
|
||||
|
||||
val format = it["format"]
|
||||
if (format !is String || (format != "png" && format != "svg")) {
|
||||
error("Icon format must be a png or svg but was $format")
|
||||
if (format !is String || (!setOf("png", "svg", "jpg").contains(format))) {
|
||||
error("Icon format must be a png, svg or jpg but was $format")
|
||||
}
|
||||
|
||||
if (iconDownloadFile.exists()) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user