From 5dd4f0e19d78c2ea25f4ae7563a37178432e4971 Mon Sep 17 00:00:00 2001 From: alemi Date: Wed, 17 Apr 2024 15:35:57 +0200 Subject: [PATCH] chore(web): better emojis --- web/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/src/lib.rs b/web/src/lib.rs index 615e7b0a..d4e7f170 100644 --- a/web/src/lib.rs +++ b/web/src/lib.rs @@ -377,9 +377,9 @@ pub fn InlineActivity(activity: serde_json::Value) -> impl IntoView { let privacy = if addressed.iter().any(|x| x == apb::target::PUBLIC) { "🌐" } else if addressed.iter().any(|x| x.ends_with("/followers")) { - "👥" - } else { "🔒" + } else { + "🔗" }; let date = object.published().map(|x| x.format("%Y/%m/%d %H:%M:%S").to_string()).unwrap_or_else(|| activity.published().map(|x| x.format("%Y/%m/%d %H:%M:%S").to_string()).unwrap_or_default()