secure-upload-fastify-sdk 1.0.2 → 1.0.3

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.
@@ -1930,7 +1930,7 @@ async function secureUploadPluginImpl(app, options) {
1930
1930
  initRateLimit: options.rateLimit?.initPerMin ?? DEFAULTS.initRateLimit,
1931
1931
  partRateLimit: options.rateLimit?.partPerMin ?? DEFAULTS.partRateLimit,
1932
1932
  smartMaxFiles: options.rateLimit?.smartMaxFilesPerInit ?? DEFAULTS.smartMaxFiles,
1933
- smartInitRateLimit: DEFAULTS.smartInitRateLimit,
1933
+ smartInitRateLimit: options.rateLimit?.smartInitRateLimit ?? DEFAULTS.smartInitRateLimit,
1934
1934
  multipartPath: options.pathPrefix?.multipart ?? DEFAULTS.multipartPath,
1935
1935
  smartPath: options.pathPrefix?.smart ?? DEFAULTS.smartPath,
1936
1936
  fileUrlPrefix: options.fileUrlPrefix ?? DEFAULTS.fileUrlPrefix,