The fix from yesterday (☀ New & Noteworthy - #77 by AndreasB ) seems to be only fix fetching quotes for existing/added instrument. So it seems the fix has to be also applied to the segment where quotes and information are loaded for the security-search function.
I assume @AndreasB will fix that soon.
EDIT:
Maybe these are the relevant code segments:
String html = new WebAccess("query2.finance.yahoo.com", "/v1/finance/lookup") //
.addParameter("formatted", "true") //
.addParameter("lang", "de-DE").addParameter("region", "DE") //
.addParameter("query", query) //
.addParameter("type", "all") //
.addParameter("count", "25") //
.addParameter("start", "0") //
.addParameter("corsDomain", "de.finance.yahoo.com") //
.get();
var html = new WebAccess("query2.finance.yahoo.com", "/v1/finance/search") //
.addParameter("q", query) //
.addParameter("region", "DE") //
.addParameter("lang", "de-DE") //
.addParameter("quotesCount", "6") //
.addParameter("newsCount", "0") //
.addParameter("enableFuzzyQuery", "false") //
.addParameter("quotesQueryId", "tss_match_phrase_query") //
.addParameter("multiQuoteQueryId", "multi_quote_single_token_query") //
.addParameter("newsQueryId", "news_cie_vespa") //
.addParameter("enableCb", "false") //
.addParameter("enableNavLinks", "false") //
.addParameter("enableEnhancedTrivialQuery", "false") //
.get();
1 Like