friendica commenters are currently shown using "Diaspora" app. Try and fix this where we can.

This commit is contained in:
friendica 2014-11-20 02:54:55 -08:00
parent c8af19c69c
commit 78cb87343c
2 changed files with 7 additions and 2 deletions

View File

@ -1395,7 +1395,12 @@ function diaspora_comment($importer,$xml,$msg) {
$datarray['body'] = $body;
$datarray['app'] = 'Diaspora';
if(strstr($person['xchan_network'],'friendica'))
$app = 'Friendica';
else
$app = 'Diaspora';
$datarray['app'] = $app;
if(! $parent_author_signature) {
$key = get_config('system','pubkey');

View File

@ -1 +1 @@
2014-11-19.864
2014-11-20.865