Fixes an exception in AgentController#show when the service of an oauthable agent has been deleted.
@@ -80,6 +80,7 @@ module ApplicationHelper
end
def service_label(service)
+ return if service.nil?
content_tag :span, [
omniauth_provider_icon(service.provider),
service_label_text(service)