Commit f51069cd authored by David Walsh's avatar David Walsh Committed by Sawyer Blatz
Browse files

For #8016 - Prevent duplicate domains from displaying inthe collection...

For #8016 - Prevent duplicate domains from displaying inthe collection description on the home screen
parent 453231b5
Loading
Loading
Loading
Loading
+3 −1
Original line number Original line Diff line number Diff line
@@ -104,5 +104,7 @@ fun TabCollection.description(context: Context): String {
            } else {
            } else {
                it
                it
            }
            }
        }.joinToString(", ")
        }
        .distinct()
        .joinToString(", ")
}
}