mirror of
https://github.com/Hopiu/xapian-haystack.git
synced 2026-04-23 08:04:50 +00:00
Fixed improperly backported call to super in XapianSearchQuery. Thanks Jezdez!
This commit is contained in:
parent
da66673433
commit
b089df8af4
1 changed files with 1 additions and 1 deletions
|
|
@ -906,7 +906,7 @@ class XapianSearchQuery(BaseSearchQuery):
|
|||
``SearchBackend`` itself.
|
||||
"""
|
||||
def build_params(self, *args, **kwargs):
|
||||
kwargs = super(BaseSearchQuery, self).build_params(*args, **kwargs)
|
||||
kwargs = super(XapianSearchQuery, self).build_params(*args, **kwargs)
|
||||
|
||||
if self.end_offset is not None:
|
||||
kwargs['end_offset'] = self.end_offset - self.start_offset
|
||||
|
|
|
|||
Loading…
Reference in a new issue