1
0
Fork 0

For #8016 - Prevent duplicate domains from displaying inthe collection description on the home screen

master
David Walsh 2020-01-31 12:04:54 +01:00 committed by Sawyer Blatz
parent 453231b5fd
commit f51069cd82
1 changed files with 3 additions and 1 deletions

View File

@ -104,5 +104,7 @@ fun TabCollection.description(context: Context): String {
} else {
it
}
}.joinToString(", ")
}
.distinct()
.joinToString(", ")
}