Tusky-App-Android/app
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
..
schemas/com.keylesspalace.tusky.db.AppDatabase Dialog notifying user of failure when media upload fails (#3135) 2023-01-27 20:50:45 +01:00
src Fetch list title from second values in arguments (#3327) 2023-02-16 20:43:44 +01:00
build.gradle Previous attempt to fix git sha on non-git build broke git build. (#3322) 2023-02-16 20:20:52 +01:00
getGitSha.gradle Previous attempt to fix git sha on non-git build broke git build. (#3322) 2023-02-16 20:20:52 +01:00
proguard-rules.pro Keep all subclasses of PreferenceFragmentCompat (#3162) 2023-01-13 19:51:42 +01:00