Improve region search by substring

This commit is contained in:
Alexey Zakharenkov 2020-11-20 11:33:40 +03:00
parent 88670681f3
commit b9c28019c1
2 changed files with 2 additions and 2 deletions

View file

@ -183,7 +183,7 @@ def search():
)
if cur.rowcount > 0:
rec = cur.fetchone()
return jsonify(bounds=[rec[0], rec[1], rec[2], rec[3]])
return jsonify(status='ok', bounds=rec)
return jsonify(status='not found')

View file

@ -381,7 +381,7 @@ function doSearch() {
if( query.length > 1 ) {
$.ajax(getServer('search'), {
data: { 'q': query },
success: zoomToFound
success: makeAnswerHandler(zoomToFound)
});
}
}