浏览代码

transloadit: Remove event listener correctly on uninstall

Renée Kooi 7 年之前
父节点
当前提交
11b820e68c
共有 1 个文件被更改,包括 4 次插入0 次删除
  1. 4 0
      src/plugins/Transloadit/index.js

+ 4 - 0
src/plugins/Transloadit/index.js

@@ -477,6 +477,10 @@ module.exports = class Transloadit extends Plugin {
   uninstall () {
     this.core.removePreProcessor(this.prepareUpload)
     this.core.removePostProcessor(this.afterUpload)
+
+    if (this.opts.importFromUploadURLs) {
+      this.core.off('core:upload-success', this.onFileUploadURLAvailable)
+    }
   }
 
   getAssembly (id) {