Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
knocte committed Sep 30, 2022
1 parent d9d9f43 commit d164048
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions NOnion/Utility/Base32Util.fs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ module Base32Util =
| x0 :: [] -> result @ quintupletToList 1 (x0, 0uy, 0uy, 0uy, 0uy)
| [] -> result

data |> Array.toList |> parse [] |> List.toArray |> System.String.Concat
data |> Array.toList |> parse List.Empty |> List.toArray |> System.String.Concat

/// Decodes a Base32 string to a UTF8 string
let DecodeBase32 text =
Expand Down Expand Up @@ -163,4 +163,4 @@ module Base32Util =
tail
| _ -> result

[ for c in text -> c ] |> parse [] |> List.toArray
[ for c in text -> c ] |> parse List.Empty |> List.toArray

0 comments on commit d164048

Please sign in to comment.