refactor(signature): save only decrypted signature files on export
This commit is contained in:
parent
a1c308727f
commit
f72ad37ec0
@ -1,4 +1,3 @@
|
||||
import axios from 'axios'
|
||||
import { MARK_TYPE_CONFIG } from '../components/getMarkComponents.tsx'
|
||||
import { NostrController } from '../controllers/NostrController.ts'
|
||||
import store from '../store/store.ts'
|
||||
@ -51,20 +50,13 @@ export const getZipWithFiles = async (
|
||||
m.value &&
|
||||
encryptionKey
|
||||
) {
|
||||
// Save the original file
|
||||
const encryptedArrayBuffer = await axios.get(m.value, {
|
||||
responseType: 'arraybuffer'
|
||||
})
|
||||
// Fetch and decrypt the original file
|
||||
const link = m.value.split('/')
|
||||
zip.file(
|
||||
`blossom/encrypted/${link[link.length - 1]}`,
|
||||
new Blob([encryptedArrayBuffer.data])
|
||||
)
|
||||
const decrypted = await fetchAndDecrypt(m.value, encryptionKey)
|
||||
|
||||
// Save decrypted
|
||||
zip.file(
|
||||
`blossom/decrypted/${link[link.length - 1]}.json`,
|
||||
`signatures/${link[link.length - 1]}.json`,
|
||||
new Blob([decrypted])
|
||||
)
|
||||
marks[i].value = decrypted
|
||||
|
Loading…
Reference in New Issue
Block a user