monra commited on
Commit
e340463
1 Parent(s): ba9fc71

Decreases limit of Web Access search queries

Browse files
Files changed (1) hide show
  1. server/backend.py +1 -1
server/backend.py CHANGED
@@ -121,7 +121,7 @@ def fetch_search_results(query):
121
  search = get('https://ddg-api.herokuapp.com/search',
122
  params={
123
  'query': query,
124
- 'limit': 5,
125
  })
126
 
127
  results = []
 
121
  search = get('https://ddg-api.herokuapp.com/search',
122
  params={
123
  'query': query,
124
+ 'limit': 3,
125
  })
126
 
127
  results = []