diff options
Diffstat (limited to 'src/bookmarks/ephy-bookmarks-import.c')
-rw-r--r-- | src/bookmarks/ephy-bookmarks-import.c | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src/bookmarks/ephy-bookmarks-import.c b/src/bookmarks/ephy-bookmarks-import.c index 778186039..884b856ee 100644 --- a/src/bookmarks/ephy-bookmarks-import.c +++ b/src/bookmarks/ephy-bookmarks-import.c @@ -77,10 +77,21 @@ ephy_bookmarks_import (EphyBookmarks *bookmarks, { return ephy_bookmarks_import_mozilla (bookmarks, filename); } - else + else if (strcmp (type, "application/xbel") == 0) { return ephy_bookmarks_import_xbel (bookmarks, filename); } + else if (strstr (filename, MOZILLA_BOOKMARKS_DIR) != NULL) + { + return ephy_bookmarks_import_mozilla (bookmarks, filename); + } + else if (strstr (filename, GALEON_BOOKMARKS_DIR) != NULL || + strstr (filename, KDE_BOOKMARKS_DIR) != NULL) + { + return ephy_bookmarks_import_xbel (bookmarks, filename); + } + + return FALSE; } static void |