fix(macos): fix oauth base64 helper visibility

main
Peter Steinberger 2025-12-14 05:19:16 +00:00
parent 4cbaee59cd
commit 841a9b4c8a
1 changed files with 1 additions and 1 deletions

View File

@ -175,7 +175,7 @@ enum PiOAuthStore {
}
extension Data {
private func base64URLEncodedString() -> String {
fileprivate func base64URLEncodedString() -> String {
self.base64EncodedString()
.replacingOccurrences(of: "+", with: "-")
.replacingOccurrences(of: "/", with: "_")