Skip to content

Commit

Permalink
transloadit: fix property name typo (#2287)
Browse files Browse the repository at this point in the history
This was causing the `ASSEMBLY_COMPLETED` Assembly statuses to be stored
under an `undefined` key, so you wouldn't actually get the final status
in the result data for the upload.
  • Loading branch information
goto-bus-stop authored May 25, 2020
1 parent c06196a commit 52f8506
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@uppy/transloadit/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ module.exports = class Transloadit extends Plugin {
_onAssemblyFinished (status) {
const url = status.assembly_ssl_url
this.client.getAssemblyStatus(url).then((finalStatus) => {
const assemblyId = finalStatus.assemblyId
const assemblyId = finalStatus.assembly_id
const state = this.getPluginState()
this.setPluginState({
assemblies: {
Expand Down

0 comments on commit 52f8506

Please sign in to comment.