Fix bug 166746: if the bookmark title for a linked image is empty, use the url.

This commit is contained in:
smfr%smfr.org 2005-07-24 23:14:48 +00:00
Родитель fd0b877165
Коммит 85ba36e726
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -174,7 +174,7 @@ NSString* const kAddBookmarkItemPrimaryTabKey = @"primary";
{
NSString* bookmarkTitle = [inItem objectForKey:kAddBookmarkItemTitleKey];
bookmarkTitle = [bookmarkTitle stringByReplacingCharactersInSet:[NSCharacterSet controlCharacterSet] withString:@" "];
if (!bookmarkTitle)
if (!bookmarkTitle || ![bookmarkTitle length])
bookmarkTitle = [AddBookmarkDialogController bookmarkUrlForItem:inItem];
return bookmarkTitle;
}