From: Claire Date: Sun, 16 Jan 2022 19:57:37 +0000 (+0100) Subject: Fix admin interface crash when displaying deleted user (#17301) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=081e4426f8b4f5377afdd6e68e135a3aded93df1;p=mastodon.git Fix admin interface crash when displaying deleted user (#17301) --- diff --git a/app/helpers/admin/dashboard_helper.rb b/app/helpers/admin/dashboard_helper.rb index d4a30b97e..c21d41341 100644 --- a/app/helpers/admin/dashboard_helper.rb +++ b/app/helpers/admin/dashboard_helper.rb @@ -2,7 +2,7 @@ module Admin::DashboardHelper def relevant_account_ip(account, ip_query) - ips = account.user.ips.to_a + ips = account.user.present? ? account.user.ips.to_a : [] matched_ip = begin ip_query_addr = IPAddr.new(ip_query)