Skip to content

Commit 47a86a6

Browse files
authored
fix: improperly formed mime-type changed from binary to application/octet-stream (#21)
Co-authored-by: Alexandre Boccagny <[email protected]>
1 parent 1f90914 commit 47a86a6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: RSocket.Core/RSocketOptions.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
using System;
1+
using System;
22

33
namespace RSocket
44
{
55
public class RSocketOptions
66
{
77
public const int INITIALDEFAULT = int.MinValue;
8-
public const string BINARYMIMETYPE = "binary";
8+
public const string BINARYMIMETYPE = "application/octet-stream";
99

1010
public TimeSpan KeepAlive { get; set; }
1111
public TimeSpan Lifetime { get; set; }
@@ -24,4 +24,4 @@ public class RSocketOptions
2424
MetadataMimeType = BINARYMIMETYPE,
2525
};
2626
}
27-
}
27+
}

0 commit comments

Comments
 (0)