mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-05-08 07:06:41 +00:00
Merge pull request #1871 from Hafizzle/Hafiz/avatar-customization-filter-fix
Avatar Background filter by month fix
This commit is contained in:
commit
67c0978ffc
1 changed files with 1 additions and 1 deletions
|
|
@ -227,7 +227,7 @@ class AvatarCustomizationFragment :
|
|||
): Boolean {
|
||||
return if (filter.onlyPurchased && ownedCustomizations.find { it.key == customization.identifier } == null) {
|
||||
true
|
||||
} else filter.months.isNotEmpty() && !filter.months.contains(customization.customizationSetName?.substringAfter('.'))
|
||||
} else filter.months.isNotEmpty() && !filter.months.contains(customization.customizationSet?.substringAfter('.'))
|
||||
}
|
||||
|
||||
fun updateUser(user: User?) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue