Skip to content

Commit

Permalink
Merge pull request #21 from AgileBits/bugfix/fixed-problem-where-the-…
Browse files Browse the repository at this point in the history
…type-identifier-was-always-fill

Fixed problem where the typeIdentifier was always fill
  • Loading branch information
Rad Azzouz committed Jul 31, 2014
2 parents c35cb75 + 8cb3fc1 commit 91d87da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OnePasswordExtension.m
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ - (void)fillLoginIntoWebView:(id)webView forViewController:(UIViewController *)v
#pragma mark - Helpers

- (UIActivityViewController *)activityViewControllerForItem:(NSDictionary *)item typeIdentifier:(NSString *)typeIdentifier {
NSItemProvider *itemProvider = [[NSItemProvider alloc] initWithItem:item typeIdentifier:kUTTypeAppExtensionFillWebViewAction];
NSItemProvider *itemProvider = [[NSItemProvider alloc] initWithItem:item typeIdentifier:typeIdentifier];

NSExtensionItem *extensionItem = [[NSExtensionItem alloc] init];
extensionItem.attachments = @[ itemProvider ];
Expand Down

0 comments on commit 91d87da

Please sign in to comment.