From 61225c825cdd680674d40ba1fee163072196d207 Mon Sep 17 00:00:00 2001 From: Pun Butrach Date: Mon, 12 Jan 2026 00:10:19 +0700 Subject: [PATCH] refactor(protonmail): RemoveSentFromSignaturePatch --- .../protonmail/signature/RemoveSentFromSignaturePatch.kt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/patches/src/main/kotlin/app/revanced/patches/protonmail/signature/RemoveSentFromSignaturePatch.kt b/patches/src/main/kotlin/app/revanced/patches/protonmail/signature/RemoveSentFromSignaturePatch.kt index 440daca54..129c29224 100644 --- a/patches/src/main/kotlin/app/revanced/patches/protonmail/signature/RemoveSentFromSignaturePatch.kt +++ b/patches/src/main/kotlin/app/revanced/patches/protonmail/signature/RemoveSentFromSignaturePatch.kt @@ -1,14 +1,14 @@ package app.revanced.patches.protonmail.signature import app.revanced.patcher.patch.PatchException +import app.revanced.patcher.patch.creatingResourcePatch import app.revanced.patcher.patch.resourcePatch import app.revanced.util.findElementByAttributeValue import java.io.File -@Suppress("unused") -val removeSentFromSignaturePatch = resourcePatch( - name = "Remove 'Sent from' signature", - description = "Removes the 'Sent from Proton Mail mobile' signature from emails.", +@Suppress("unused", "ObjectPropertyName") +val `Remove 'Sent from' signature` by creatingResourcePatch( + description = "Removes the 'Sent from Proton Mail mobile' signature from emails." ) { compatibleWith("ch.protonmail.android"("4.15.0"))