Fix issue with mimeType resolution in share flow.

This commit is contained in:
Greyson Parrelli
2020-02-19 15:09:03 -05:00
parent 3824e90997
commit 0a883dc234
2 changed files with 25 additions and 23 deletions

View File

@@ -322,7 +322,7 @@ public class BlobProvider {
return this;
}
public BlobBuilder withFileName(@NonNull String fileName) {
public BlobBuilder withFileName(@Nullable String fileName) {
this.fileName = fileName;
return this;
}