Skip to content

Commit a738f38

Browse files
Merge pull request #37 from CameronAavik/master
Fix int64 option fields. Fixes #36
2 parents 18c6981 + 645605b commit a738f38

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/FSharp.Azure.Storage/Utilities.fs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ module internal Utilities =
9393
| :? (double option) as opt -> opt.Value :> obj
9494
| :? (Guid option) as opt -> opt.Value :> obj
9595
| :? (int option) as opt -> opt.Value :> obj
96+
| :? (int64 option) as opt -> opt.Value :> obj
9697
| :? (Uri option) as opt -> opt.Value :> obj
9798
| other -> other
9899

@@ -108,6 +109,7 @@ module internal Utilities =
108109
| :? double as v -> Some v :> obj
109110
| :? Guid as v -> Some v :> obj
110111
| :? int as v -> Some v :> obj
112+
| :? int64 as v -> Some v :> obj
111113
| :? Uri as v -> Some v :> obj
112114
| other -> other
113115
else o

0 commit comments

Comments
 (0)