1
0
Fork 0
mirror of synced 2024-09-14 00:08:25 +12:00

Fix rev when uploading a new plugin

This commit is contained in:
Andrew Kingston 2022-08-12 16:19:29 +01:00
parent 8eb6400252
commit 6c7a7648d9

View file

@ -39,7 +39,7 @@ export async function upload(ctx: any) {
const existing = await db.get(pluginId) const existing = await db.get(pluginId)
rev = existing._rev rev = existing._rev
} catch (err) { } catch (err) {
rev = null rev = undefined
} }
const doc = { const doc = {
_id: pluginId, _id: pluginId,