]> git.mxchange.org Git - friendica-addons.git/commitdiff
CatAvatar: Use new function to perform a profile update
authorMichael <heluecht@pirati.ca>
Wed, 16 Jun 2021 05:26:10 +0000 (05:26 +0000)
committerMichael <heluecht@pirati.ca>
Wed, 16 Jun 2021 05:26:10 +0000 (05:26 +0000)
catavatar/catavatar.php

index 7c5b5595f52cde769cc313dc79290d1e2f5ef0e2..47ff6698d340b95337295774090fbac82836686d 100644 (file)
@@ -15,6 +15,7 @@ use Friendica\Database\DBA;
 use Friendica\DI;
 use Friendica\Model\Contact;
 use Friendica\Model\Photo;
+use Friendica\Model\Profile;
 use Friendica\Network\HTTPException\NotFoundException;
 
 define("CATAVATAR_SIZE", 256);
@@ -98,12 +99,7 @@ function catavatar_addon_settings_post(App $a, &$s)
                Contact::updateSelfFromUserID(local_user(), true);
 
                // Update global directory in background
-               $url = DI::baseUrl()->get() . '/profile/' . $a->user['nickname'];
-               if ($url && strlen(DI::config()->get('system', 'directory'))) {
-                       Worker::add(PRIORITY_LOW, 'Directory', $url);
-               }
-
-               Worker::add(PRIORITY_LOW, 'ProfileUpdate', local_user());
+               Profile::publishUpdate(local_user());
 
                info(DI::l10n()->t('Meow!'));
                return;