solid-ui 2.4.20-7d6df17d → 2.4.20-8af353df

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/main.js CHANGED
@@ -15167,8 +15167,8 @@ Object.defineProperty(exports, "__esModule", ({
15167
15167
  }));
15168
15168
  exports.versionInfo = void 0;
15169
15169
  var versionInfo = {
15170
- buildTime: '2022-03-30T15:41:56Z',
15171
- commit: '7d6df17d5d55a800bfb35ee0f2f1af1e5adea2d9',
15170
+ buildTime: '2022-03-31T14:26:03Z',
15171
+ commit: '8af353df5e826d7795123d61f2adc8ab29238fbb',
15172
15172
  npmInfo: {
15173
15173
  'solid-ui': '2.4.20',
15174
15174
  npm: '6.14.16',
@@ -16987,7 +16987,7 @@ function uploadFiles(fetcher, files, fileBase, imageBase, successHandler) {
16987
16987
  } else {
16988
16988
  var extension = mime.extension(theFile.type); // Note not simple: eg .mp3 => audio/mpeg; .mpga => audio/mpeg; audio/mp3 => .mp3
16989
16989
 
16990
- if (extension && !theFile.name.endsWith('.' + extension) && // Not already has preferred extension? and ...
16990
+ if (extension && extension !== 'false' && !theFile.name.endsWith('.' + extension) && // Not already has preferred extension? and ...
16991
16991
  theFile.type !== mime.lookup(theFile.name)) {
16992
16992
  // the mime type of this ext is not the right one?
16993
16993
  suffix = '_.' + extension; // console.log('MIME TYPE MISMATCH: ' + mime.lookup(theFile.name) + ': adding extension: ' + suffix)