diff --git a/dom/fs/parent/FileSystemManagerParent.cpp b/dom/fs/parent/FileSystemManagerParent.cpp index 8538aa4630be..bb77063e18b2 100644 --- a/dom/fs/parent/FileSystemManagerParent.cpp +++ b/dom/fs/parent/FileSystemManagerParent.cpp @@ -279,7 +279,10 @@ IPCResult FileSystemManagerParent::RecvGetFile( } } - RefPtr blob = MakeRefPtr(fileObject); + // TODO: Currently, there is no way to assign type and it is empty. + // See bug 1826780. + RefPtr blob = + MakeRefPtr(fileObject, path.LastElement(), type); IPCBlob ipcBlob; QM_TRY(MOZ_TO_RESULT(IPCBlobUtils::Serialize(blob, ipcBlob)), IPC_OK(),