X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=statusnet%2Fstatusnet.php;h=d12aefe79c55dab5c2f0889b24eef4a552ab3e34;hb=e587631eeb7d05ebec563e57a1f665fcd911b69b;hp=393bbfe53fba58e2286e3d4c5962650cfea88e7f;hpb=1cf8cca257a45eb7fd1551a5e9da1b88785b83e0;p=friendica-addons.git diff --git a/statusnet/statusnet.php b/statusnet/statusnet.php index 393bbfe5..d12aefe7 100755 --- a/statusnet/statusnet.php +++ b/statusnet/statusnet.php @@ -791,8 +791,12 @@ function statusnet_fetchtimeline($a, $uid) { $osecret = get_pconfig($uid, 'statusnet', 'oauthsecret'); $lastid = get_pconfig($uid, 'statusnet', 'lastid'); - $application_name = get_config('statusnet', 'application_name'); - + // get the application name for the SN app + // 1st try personal config, then system config and fallback to the + // hostname of the node if neither one is set. + $application_name = get_pconfig( $uid, 'statusnet', 'application_name'); + if ($application_name == "") + $application_name = get_config('statusnet', 'application_name'); if ($application_name == "") $application_name = $a->get_hostname();