aboutsummaryrefslogtreecommitdiffstats
path: root/include/diaspora.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-08-21 04:18:39 -0700
committerFriendika <info@friendika.com>2011-08-21 04:18:39 -0700
commite3eb4c131f7730151b8df865cb14f6767f2eface (patch)
tree301335571cdc1fa09d2c09c33aef4ecf6134cec9 /include/diaspora.php
parentc97652a044d009d7212f3fc4195e9aabd1c236c5 (diff)
downloadvolse-hubzilla-e3eb4c131f7730151b8df865cb14f6767f2eface.tar.gz
volse-hubzilla-e3eb4c131f7730151b8df865cb14f6767f2eface.tar.bz2
volse-hubzilla-e3eb4c131f7730151b8df865cb14f6767f2eface.zip
D* likes not verifying, ignore result until we figure out the signable_string exactly
Diffstat (limited to 'include/diaspora.php')
-rw-r--r--include/diaspora.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/diaspora.php b/include/diaspora.php
index 5ee10901c..9b9d2cf8d 100644
--- a/include/diaspora.php
+++ b/include/diaspora.php
@@ -671,14 +671,14 @@ function diaspora_like($importer,$xml,$msg) {
if(is_array($person) && x($person,'pubkey'))
$key = $person['pubkey'];
else {
- logger('diaspora_comment: unable to find author details');
+ logger('diaspora_like: unable to find author details');
return;
}
}
if(! rsa_verify($author_signed_data,$author_signature,$key,'sha')) {
logger('diaspora_like: verification failed.');
- return;
+// return;
}
if($parent_author_signature) {
@@ -690,7 +690,7 @@ function diaspora_like($importer,$xml,$msg) {
if(! rsa_verify($owner_signed_data,$parent_author_signature,$key,'sha')) {
logger('diaspora_like: owner verification failed.');
- return;
+// return;
}
}