mirror of
https://github.com/ReVanced/revanced-patches.git
synced 2024-11-10 01:01:56 +01:00
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:
parent
306f996017
commit
2afea71557
1 changed files with 2 additions and 2 deletions
|
@ -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(
|
|||
)
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue