From 7416507f2d4c023b037e9278284370ec9d3b6d3f Mon Sep 17 00:00:00 2001 From: "me@ow.nekobit.net" Date: Mon, 4 Apr 2022 21:39:40 +0000 Subject: [PATCH] Compile fix FossilOrigin-Name: 6bddcdb938020bf500af0f47793b7502271433c2c47604c9cdb78e6552ebea9c --- src/account.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/account.c b/src/account.c index 0075497..aeb9631 100644 --- a/src/account.c +++ b/src/account.c @@ -77,8 +77,8 @@ char* construct_account_page(mastodont_t* api, acct->following_count, "Followers", acct->followers_count, - acct->following ? "active" : "", - acct->following ? "Following!" : "Follow", + 0 ? "active" : "", + 0 ? "Following!" : "Follow", acct->avatar, info_html ? info_html : "", statuses_html);