feat: add watch title search button (#303)

This commit is contained in:
TwistedUmbrellaX 2024-03-28 18:46:13 -04:00 committed by GitHub
parent 6b868fa824
commit 78f6ec27b3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 180 additions and 93 deletions

View file

@ -70,6 +70,7 @@ class SearchActivity : AppCompatActivity() {
intent.getStringExtra("type") ?: "ANIME",
isAdult = if (Anilist.adult) intent.getBooleanExtra("hentai", false) else false,
onList = listOnly,
search = intent.getStringExtra("query"),
genres = intent.getStringExtra("genre")?.let { mutableListOf(it) },
tags = intent.getStringExtra("tag")?.let { mutableListOf(it) },
sort = intent.getStringExtra("sortBy"),