From 6b1a435cdc0ec16dd4c8d564da9d9055b073c336 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Thu, 11 May 2017 00:34:54 -0400 Subject: [PATCH] init _tableItems as empty list --- src/iOS.Extension/LoginListViewController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/iOS.Extension/LoginListViewController.cs b/src/iOS.Extension/LoginListViewController.cs index 1dbe5b34a..0cbf4db9f 100644 --- a/src/iOS.Extension/LoginListViewController.cs +++ b/src/iOS.Extension/LoginListViewController.cs @@ -101,7 +101,7 @@ namespace Bit.iOS.Extension { private const string CellIdentifier = "TableCell"; - private IEnumerable _tableItems; + private IEnumerable _tableItems = new List(); private Context _context; private LoginListViewController _controller;