When getting credentials with -[WKWebsiteDataStore fetchDataRecordsOfTypes:completionHandler:], the display name is empty.
<rdar://problem/49983718>
Created attachment 367651 [details] Patch
Comment on attachment 367651 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=367651&action=review > Source/WebKit/UIProcess/WebsiteData/WebsiteDataStore.cpp:361 > + if (!displayName) > + continue; It doesn't seem right to skip the entry just because we're missing the display name??
(In reply to Ryosuke Niwa from comment #3) > Comment on attachment 367651 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=367651&action=review > > > Source/WebKit/UIProcess/WebsiteData/WebsiteDataStore.cpp:361 > > + if (!displayName) > > + continue; > > It doesn't seem right to skip the entry just because we're missing the > display name?? That makes sense. I will update the patch. Thanks for reviewing!
Created attachment 367826 [details] Patch