fix(syncforreddit/change-oauth-client-id): trim whitespace from OAuth string (#2402)

This solves patching errors, when the string includes whitespace
This commit is contained in:
Palm 2023-06-12 11:49:33 +07:00 committed by GitHub
parent 306f996017
commit 2afea71557
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -50,7 +50,7 @@ class ChangeOAuthClientIdPatch : BytecodePatch(
""".trimIndent()
return PatchResultError(error)
}.let { clientId = it.readText() }
}.let { clientId = it.readText().trim() }
}
GetAuthorizationStringFingerprint.result?.also { result ->
@ -96,4 +96,4 @@ class ChangeOAuthClientIdPatch : BytecodePatch(
)
)
}
}
}