Переглянути джерело

companion: mimetype could be empty :/ (#2201)

Ifedapo .A. Olarewaju 5 роки тому
батько
коміт
cf0fff137f

+ 1 - 1
packages/@uppy/companion/src/server/provider/drive/adapter.js

@@ -106,7 +106,7 @@ exports.getNextPagePath = (data, currentQuery, currentPath) => {
 }
 
 exports.isGsuiteFile = (mimeType) => {
-  return mimeType.startsWith('application/vnd.google')
+  return mimeType && mimeType.startsWith('application/vnd.google')
 }
 
 exports.getGsuiteExportType = (mimeType) => {