Private
Public Access
1
0

Not sure why, but mimeType is not always populated

This commit is contained in:
2019-03-03 14:23:54 -08:00
parent de852a926d
commit 6c089f737b
2 changed files with 8 additions and 1 deletions

View File

@@ -25,7 +25,7 @@
- (NSDictionary *)httpHeaders
{
return @{
@"Content-Type" : _contentType
@"Content-Type" : _contentType ?: @"application/octet-stream"
};
}