We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 18c6981 + 645605b commit a738f38Copy full SHA for a738f38
src/FSharp.Azure.Storage/Utilities.fs
@@ -93,6 +93,7 @@ module internal Utilities =
93
| :? (double option) as opt -> opt.Value :> obj
94
| :? (Guid option) as opt -> opt.Value :> obj
95
| :? (int option) as opt -> opt.Value :> obj
96
+ | :? (int64 option) as opt -> opt.Value :> obj
97
| :? (Uri option) as opt -> opt.Value :> obj
98
| other -> other
99
@@ -108,6 +109,7 @@ module internal Utilities =
108
109
| :? double as v -> Some v :> obj
110
| :? Guid as v -> Some v :> obj
111
| :? int as v -> Some v :> obj
112
+ | :? int64 as v -> Some v :> obj
113
| :? Uri as v -> Some v :> obj
114
115
else o
0 commit comments