From 1c1dc555f56b36fa6f2a25e1f667c7e8e44479e1 Mon Sep 17 00:00:00 2001 From: Paul Burke Date: Mon, 17 Jan 2022 12:52:20 -0500 Subject: [PATCH] v0.10.1 - Fixes editing posts created with a derived key --- lib/post.js | 1 + manifest.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/post.js b/lib/post.js index b7ccd89..1251108 100644 --- a/lib/post.js +++ b/lib/post.js @@ -238,6 +238,7 @@ const onPostButtonClick = (postButton) => { const image = post['ImageURLs'] const video = post['VideoURLs'] const extraData = post['PostExtraData'] + if (extraData['DerivedPublicKey']) delete extraData['DerivedPublicKey'] const repostedPostHashHex = post['RepostedPostEntryResponse'] ? post['RepostedPostEntryResponse']['PostHashHex'] : '' const parentStakeID = post['ParentStakeID'] return submitPost(pubKey, postBody, image, video, null, extraData, postHashHexToModify, repostedPostHashHex, parentStakeID) diff --git a/manifest.json b/manifest.json index 7c05545..2f1093a 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "name": "BitClout Plus", "description": "BitClout on steroids", - "version": "0.10.0", + "version": "0.10.1", "manifest_version": 3, "content_security_policy": { "extension_pages": "default-src 'self'; frame-ancestors 'none';"