diff --git a/mirai-core/src/jvmMain/kotlin/net/mamoe/mirai/message/SendImageUtilsJvm.kt b/mirai-core/src/jvmMain/kotlin/net/mamoe/mirai/message/SendImageUtilsJvm.kt index f045ac98f..31bfecdeb 100644 --- a/mirai-core/src/jvmMain/kotlin/net/mamoe/mirai/message/SendImageUtilsJvm.kt +++ b/mirai-core/src/jvmMain/kotlin/net/mamoe/mirai/message/SendImageUtilsJvm.kt @@ -116,7 +116,7 @@ suspend fun InputStream.uploadAsImage(contact: Contact): OfflineImage = */ @Throws(OverFileSizeMaxException::class) suspend fun File.uploadAsImage(contact: Contact): OfflineImage { - require(this.exists() && this.canRead()) + require(this.isFile && this.exists() && this.canRead()) { "file ${this.path} is not readable" } return withContext(Dispatchers.IO) { toExternalImage() }.upload(contact) }