Browse Source

transloadit: fully disable Tus fingerprinting (#2425)

In #2239, I added a backwards compatible implementation for the `resume`
option from tus-js-client v1, but forgot to disable it again in the
Transloadit plugin.

Fixes #2382
Renée Kooi 4 years ago
parent
commit
6f5de4211c
1 changed files with 1 additions and 0 deletions
  1. 1 0
      packages/@uppy/transloadit/src/index.js

+ 1 - 0
packages/@uppy/transloadit/src/index.js

@@ -787,6 +787,7 @@ module.exports = class Transloadit extends Plugin {
         // Golden Retriever. So, Golden Retriever is required to do resumability with the Transloadit plugin,
         // and we disable Tus's default resume implementation to prevent bad behaviours.
         storeFingerprintForResuming: false,
+        resume: false,
         // Disable Companion's retry optimisation; we need to change the endpoint on retry
         // so it can't just reuse the same tus.Upload instance server-side.
         useFastRemoteRetry: false,