web: Fix copy-pasted code that breaks in sign_xpi.js

This commit is contained in:
David Wendt 2023-03-10 19:54:29 -05:00 committed by kmeisthax
parent f4354a638e
commit 6fd6279344
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ async function sign(
extensionId extensionId
)}/versions/${encodeURIComponent(version)}/`, )}/versions/${encodeURIComponent(version)}/`,
formData: { formData: {
source: this._fs.createReadStream(sourcePath), source: fs.createReadStream(sourcePath),
}, },
}); });