Skip to content

Commit 0c507bb

Browse files
authored
Update Fetch.fs - fix JS output for ContentRange (#25)
The emitted JS for Content-Range had an extra `'` in it which broke the JS output
1 parent 605ca7b commit 0c507bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Fetch.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ module Types =
155155
[<Emit("$0.get('Content-MD5')")>] abstract ContentMD5: string option
156156

157157
/// Where in a full body message this partial message belongs
158-
[<Emit("$0.get('Content-Range'')")>] abstract ContentRange: string option
158+
[<Emit("$0.get('Content-Range')")>] abstract ContentRange: string option
159159

160160
/// The MIME type of this content
161161
[<Emit("$0.get('Content-Type')")>] abstract ContentType: string option

0 commit comments

Comments
 (0)