mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 08:18:29 +01:00
add a fix for searches
This commit is contained in:
parent
40c549b2d0
commit
47096ec018
1 changed files with 5 additions and 3 deletions
|
@ -91,9 +91,11 @@ module.exports = function (app, config, renderTemplate) {
|
|||
|
||||
h = " ";
|
||||
|
||||
if (j.Search.Results.DynamicItem) {
|
||||
if (j.Search.Results.DynamicItem.id == "didYouMeanRenderer") {
|
||||
var h = JSON.parse(j.Search.Results.DynamicItem.Title);
|
||||
if (j.Search) {
|
||||
if ("Results.DynamicItem" in j.Search) {
|
||||
if (j.Search.Results.DynamicItem.id == "didYouMeanRenderer") {
|
||||
var h = JSON.parse(j.Search.Results.DynamicItem.Title);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue