]> git.mxchange.org Git - friendica.git/commitdiff
Fix condition for follows export
authorHypolite Petovan <hypolite@mrpetovan.com>
Mon, 24 Oct 2022 21:56:44 +0000 (17:56 -0400)
committerHypolite Petovan <hypolite@mrpetovan.com>
Mon, 24 Oct 2022 22:21:10 +0000 (18:21 -0400)
- Select follows instead of followers
- Filter out archived contacts

src/Module/Settings/UserExport.php

index 74bb517c39637509b5b0b70bf358d59ac42f3554..85e1f75c65be4cf86e5987731be5eedb6344d46f 100644 (file)
@@ -222,7 +222,7 @@ class UserExport extends BaseSettings
                // write the table header (like Mastodon)
                echo "Account address, Show boosts\n";
                // get all the contacts
-               $contacts = DBA::select('contact', ['addr', 'url'], ['uid' => $user_id, 'self' => false, 'rel' => [1, 3], 'deleted' => false]);
+               $contacts = DBA::select('contact', ['addr', 'url'], ['uid' => $user_id, 'self' => false, 'rel' => [Contact::SHARING, Contact::FRIEND], 'deleted' => false, 'archive' => false]);
                while ($contact = DBA::fetch($contacts)) {
                        echo ($contact['addr'] ?: $contact['url']) . ", true\n";
                }