Modified GetMimeType to return binary type if there is no extension.

This commit is contained in:
MattMo 2023-03-31 08:44:45 -07:00
parent cf477522c0
commit b9e1f2ca7d

View File

@ -10,8 +10,8 @@ namespace MontoyaTech.Rest.Net
{ {
public static string GetMimeType(this string extension) public static string GetMimeType(this string extension)
{ {
if (extension == null) if (string.IsNullOrWhiteSpace(extension))
throw new ArgumentNullException("extension"); return "application/octet-stream";
if (extension.StartsWith(".")) if (extension.StartsWith("."))
extension = extension.Substring(1); extension = extension.Substring(1);