Ver Fonte

Added back instance and actor failure icons.

grunfink há 10 meses atrás
pai
commit
a12db9a44e
1 ficheiros alterados com 16 adições e 0 exclusões
  1. 16 0
      html.c

+ 16 - 0
html.c

@@ -249,6 +249,22 @@ xs_html *html_actor_icon(snac *user, xs_dict *actor, const char *date,
                 xs_html_raw("🤝")));
                 xs_html_raw("🤝")));
     }
     }
 
 
+    if (instance_failure(actor_id, 0) == -1) {
+        xs_html_add(actor_icon,
+            xs_html_text(" "),
+            xs_html_tag("span",
+                xs_html_attr("title", "broken instance"),
+                xs_html_raw("💔")));
+    }
+
+    if (actor_failure(actor_id, 0) == -1) {
+        xs_html_add(actor_icon,
+            xs_html_text(" "),
+            xs_html_tag("span",
+                xs_html_attr("title", "account no longer exists"),
+                xs_html_raw("💀")));
+    }
+
     if (scope != -1) {
     if (scope != -1) {
         if (scope == SCOPE_FOLLOWERS) {
         if (scope == SCOPE_FOLLOWERS) {
             xs_html_add(actor_icon,
             xs_html_add(actor_icon,