From 31fb3166d922ae1f568f52e44cbe726dd1c891a4 Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Mon, 3 Apr 2023 05:06:38 +0200 Subject: [PATCH] fix: correct spelling mistake --- src/main/kotlin/app/revanced/utils/patcher/Patcher.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/app/revanced/utils/patcher/Patcher.kt b/src/main/kotlin/app/revanced/utils/patcher/Patcher.kt index 0778279f..73674eff 100644 --- a/src/main/kotlin/app/revanced/utils/patcher/Patcher.kt +++ b/src/main/kotlin/app/revanced/utils/patcher/Patcher.kt @@ -37,7 +37,7 @@ fun Patcher.addPatchesFiltered(allPatches: List>>) { val compatibleWith = compatiblePackages.joinToString(";") { _package -> "${_package.name}: ${_package.versions.joinToString(", ")}" } - logger.warn("$prefix: Incompatible with version $packageVersion. This patch is only compatible with version $compatibleWith") + logger.warn("$prefix: Incompatible with version $packageVersion. This patch is only compatible with $compatibleWith") return@patchLoop } }