fix url search returning the same post indefinitely (#1695)
This commit is contained in:
parent
222224e78a
commit
6a60a2a6a6
1 changed files with 4 additions and 4 deletions
|
@ -97,12 +97,12 @@ class SearchDataSource<T>(
|
|||
.subscribe(
|
||||
{ data ->
|
||||
// Working around Mastodon bug where exact match is returned no matter
|
||||
// which offset is requested (so if we seach for a full username, it's
|
||||
// which offset is requested (so if we search for a full username, it's
|
||||
// infinite)
|
||||
// see https://github.com/tootsuite/mastodon/issues/11365
|
||||
val res = if (data.accounts.size == 1
|
||||
&& data.accounts[0].username
|
||||
.equals(searchRequest, ignoreCase = true)) {
|
||||
// see https://github.com/tootsuite/mastodon/issues/13083
|
||||
val res = if ((data.accounts.size == 1 && data.accounts[0].username.equals(searchRequest, ignoreCase = true))
|
||||
|| (data.statuses.size == 1 && data.statuses[0].url.equals(searchRequest))) {
|
||||
listOf()
|
||||
} else {
|
||||
parser(data)
|
||||
|
|
Loading…
Reference in a new issue