mount public data from the atmosphere to a virtual filesystem (macos only) pdfs.at
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

refactor(atproto/oauth): scope PKCE.base64URLEncode back to internal

+1 -1
+1 -1
Packages/ATProto/Sources/ATProto/OAuth/PKCE.swift
··· 19 19 return base64URLEncode(Data(digest)) 20 20 } 21 21 22 - public static func base64URLEncode(_ data: Data) -> String { 22 + static func base64URLEncode(_ data: Data) -> String { 23 23 data.base64EncodedString() 24 24 .replacingOccurrences(of: "+", with: "-") 25 25 .replacingOccurrences(of: "/", with: "_")