diff --git a/src/renderer/views/search/components/App/index.tsx b/src/renderer/views/search/components/App/index.tsx index 105f947b1..301cd9c3b 100644 --- a/src/renderer/views/search/components/App/index.tsx +++ b/src/renderer/views/search/components/App/index.tsx @@ -134,7 +134,11 @@ export const App = hot( if (suggestion.isSearch) { favicon = store.searchEngine.icon; - } else if (favicon == null || favicon.trim() === '') { + } else if ( + favicon == null || + favicon.trim() === '' || + favicon === icons.page + ) { favicon = icons.page; customIcon = true; }