|
@@ -120,7 +120,7 @@ class SearchRSSFeed(Feed):
|
|
# same as on files.views.MediaSearch: move this processing to a prepare_query function
|
|
# same as on files.views.MediaSearch: move this processing to a prepare_query function
|
|
query = helpers.clean_query(query)
|
|
query = helpers.clean_query(query)
|
|
q_parts = [
|
|
q_parts = [
|
|
- q_part.strip("y")
|
|
|
|
|
|
+ q_part.rstrip("y")
|
|
for q_part in query.split()
|
|
for q_part in query.split()
|
|
if q_part not in STOP_WORDS
|
|
if q_part not in STOP_WORDS
|
|
]
|
|
]
|