From 3c2b5de4b8932d0304ea666629f8c0810dcb185a Mon Sep 17 00:00:00 2001 From: Maarten Billemont Date: Wed, 22 Oct 2014 23:32:25 -0400 Subject: [PATCH] Fix crash when clearing the pasteboard. --- MasterPassword/ObjC/iOS/MPiOSAppDelegate.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MasterPassword/ObjC/iOS/MPiOSAppDelegate.m b/MasterPassword/ObjC/iOS/MPiOSAppDelegate.m index 395f10cb..2711023a 100644 --- a/MasterPassword/ObjC/iOS/MPiOSAppDelegate.m +++ b/MasterPassword/ObjC/iOS/MPiOSAppDelegate.m @@ -294,7 +294,7 @@ return; [self importSites:importedSitesString]; - [UIPasteboard generalPasteboard].string = nil; + [UIPasteboard generalPasteboard].string = @""; } cancelTitle:@"No" otherTitles:@"Import Sites", nil]; } );