From 45dd24041598a1a1a3d5278e72345ab35c1bcdb0 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Sat, 30 Jun 2018 08:55:54 -0400 Subject: [PATCH] include some type info with extension exception --- src/iOS.Extension/LoadingViewController.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/iOS.Extension/LoadingViewController.cs b/src/iOS.Extension/LoadingViewController.cs index 9c6125688..75e907195 100644 --- a/src/iOS.Extension/LoadingViewController.cs +++ b/src/iOS.Extension/LoadingViewController.cs @@ -358,7 +358,8 @@ namespace Bit.iOS.Extension } else { - throw new Exception("Cannot parse list for action."); + throw new Exception("Cannot parse list for action. List is " + + (list?.GetType().ToString() ?? "null")); } _googleAnalyticsService.TrackExtensionEvent("ProcessItemProvider", type);