Skip to content

Commit d164048

Browse files
committed
WIP
1 parent d9d9f43 commit d164048

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

NOnion/Utility/Base32Util.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ module Base32Util =
9696
| x0 :: [] -> result @ quintupletToList 1 (x0, 0uy, 0uy, 0uy, 0uy)
9797
| [] -> result
9898

99-
data |> Array.toList |> parse [] |> List.toArray |> System.String.Concat
99+
data |> Array.toList |> parse List.Empty |> List.toArray |> System.String.Concat
100100

101101
/// Decodes a Base32 string to a UTF8 string
102102
let DecodeBase32 text =
@@ -163,4 +163,4 @@ module Base32Util =
163163
tail
164164
| _ -> result
165165

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

0 commit comments

Comments
 (0)