Merge "Subscription name has whitespace trimmed to determine uniqueness" into sc-dev am: b71cb56c05
Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Settings/+/14111129 Change-Id: I89f611f2da0c633b61e0321ce34445f6c933443a
This commit is contained in:
@@ -256,7 +256,7 @@ public class SubscriptionUtil {
|
||||
.map(i -> {
|
||||
DisplayInfo info = new DisplayInfo();
|
||||
info.subscriptionInfo = i;
|
||||
info.originalName = i.getDisplayName();
|
||||
info.originalName = i.getDisplayName().toString().trim();
|
||||
return info;
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user