aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs
diff options
context:
space:
mode:
Diffstat (limited to 'Zotlabs')
-rw-r--r--Zotlabs/Zot6/Receiver.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/Zotlabs/Zot6/Receiver.php b/Zotlabs/Zot6/Receiver.php
index b9a89262a..78661865e 100644
--- a/Zotlabs/Zot6/Receiver.php
+++ b/Zotlabs/Zot6/Receiver.php
@@ -72,7 +72,11 @@ class Receiver {
if ($this->encrypted && $this->prvkey) {
$uncrypted = Crypto::unencapsulate($this->data,$this->prvkey);
- if ($uncrypted) {
+
+ // openssl_decrypt() will sometimes return garbage instead of false when
+ // a wrong key is used. This can happen in case of hub re-installs.
+ // Hence also check with str_starts_with().
+ if ($uncrypted && str_starts_with($uncrypted, '{')) {
$this->data = json_decode($uncrypted,true);
}
else {