Tusky-App-Android/app/src/main/java/com/keylesspalace/tusky
Nik Clayton 52c98749e6
Fetch list title from second values in arguments (#3327)
Previous code was:

```
for (i in tabs.indices) {
    // ...
    if (tabs[i].id == LIST) {
        tab.contentDescription = tabs[i].arguments[1]
    } else {
        tab.setContentDescription(tabs[i].text)
    }
    // ...
```

When I converted it over, `i` was replaced with `position`, but I misread `tab.contentDescription = tabs[i].arguments[1]` as `tab.contentDescription = tabs[i].arguments[i]`.

Put the `1` back.
2023-02-16 20:43:44 +01:00
..
adapter Add trending tags (#3149) 2023-02-14 19:52:11 +01:00
appstore improve logout (#2579) 2022-06-20 16:45:54 +02:00
components Add support for updating media description and focus point when editing statuses (#3215) 2023-02-14 21:13:38 +01:00
db Upgrade AndroidX dependencies (#3169) 2023-02-04 20:22:29 +01:00
di Add trending tags (#3149) 2023-02-14 19:52:11 +01:00
entity Add support for updating media description and focus point when editing statuses (#3215) 2023-02-14 21:13:38 +01:00
fragment Clean up Account adapters (#3202) 2023-02-04 20:29:13 +01:00
interfaces Add trending tags (#3149) 2023-02-14 19:52:11 +01:00
json don't crash on unparseable date (#3129) 2023-01-09 21:24:04 +01:00
network Add trending tags (#3149) 2023-02-14 19:52:11 +01:00
pager Keep the tabs adapter over the life of the viewpager (#3255) 2023-02-15 19:17:59 +01:00
receiver Handoff media upload (#2947) 2022-12-29 19:58:23 +01:00
service Add support for updating media description and focus point when editing statuses (#3215) 2023-02-14 21:13:38 +01:00
settings Perform preference schema upgrades at startup (#3186) 2023-02-04 20:19:01 +01:00
usecase Keep scroll position when loading missing statuses (#3000) 2023-01-13 19:26:24 +01:00
util Add trending tags (#3149) 2023-02-14 19:52:11 +01:00
view Add trending tags (#3149) 2023-02-14 19:52:11 +01:00
viewdata Add trending tags (#3149) 2023-02-14 19:52:11 +01:00
viewmodel Handle even more instance defaults (#2612) 2022-07-26 20:24:50 +02:00
AboutActivity.kt add ktlint plugin to project and apply default code style (#2209) 2021-06-28 21:13:24 +02:00
AccountsInListFragment.kt migrate Lists from RxJava to Kotlin coroutines (#2537) 2022-05-18 18:45:35 +02:00
BaseActivity.java Modernize a bit (#3171) 2023-02-04 19:58:53 +01:00
BottomSheetActivity.kt Load goto social and microblog.pub urls in the app (#2945) 2022-12-03 12:16:17 +01:00
EditProfileActivity.kt Handle even more instance defaults (#2612) 2022-07-26 20:24:50 +02:00
FiltersActivity.kt Implement getFilters() without rxjava (#2990) 2022-12-07 19:30:53 +01:00
LicenseActivity.kt migrate `IOUtils` to Kotlin (#2763) 2022-11-07 20:10:06 +01:00
ListsActivity.kt Convert util/{HttpHeaderLink,PairedList,TimestampUtils,ThemeUtils} to Kotlin (#3046) 2022-12-31 13:01:35 +01:00
MainActivity.kt Fetch list title from second values in arguments (#3327) 2023-02-16 20:43:44 +01:00
SplashActivity.kt remove legacy notification channel cleanup (#2550) 2022-05-25 20:54:25 +02:00
StatusListActivity.kt Fix tests (#3022) 2022-12-08 09:58:58 +01:00
TabData.kt Add trending tags (#3149) 2023-02-14 19:52:11 +01:00
TabPreferenceActivity.kt Add trending tags (#3149) 2023-02-14 19:52:11 +01:00
TuskyApplication.kt Perform preference schema upgrades at startup (#3186) 2023-02-04 20:19:01 +01:00
ViewMediaActivity.kt Support a swipe down to dismiss video (#2879) 2022-12-05 14:33:38 +01:00