Skip to content

Commit ce2bffd

Browse files
committed
Fix web search action
1 parent e2c6f64 commit ce2bffd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/scijava/search/web/OpenWebSearchResultInBrowserActionFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public class OpenWebSearchResultInBrowserActionFactory implements
2626
{
2727
@Override
2828
public boolean supports(final SearchResult result) {
29-
return result instanceof WebServiceException;
29+
return result instanceof WebSearchResult;
3030
}
3131

3232
@Override

0 commit comments

Comments
 (0)