mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-21 14:19:34 +00:00
fixed issue trying to copy nil objects to the pasteboard
This commit is contained in:
@@ -396,7 +396,9 @@ NSString *const _toggleFilterUsernameButton = @"SearchUsername";
|
||||
}
|
||||
|
||||
- (void)_copyToPasteboard:(NSString *)data overlayInfo:(MPOVerlayInfoType)overlayInfoType {
|
||||
[[MPPasteBoardController defaultController] copyObjects:@[ data ]];
|
||||
if(data) {
|
||||
[[MPPasteBoardController defaultController] copyObjects:@[ data ]];
|
||||
}
|
||||
NSImage *infoImage = nil;
|
||||
NSString *infoText = nil;
|
||||
switch (overlayInfoType) {
|
||||
|
||||
Reference in New Issue
Block a user