Disable selection mode for purchases. Check additional cases for displaying unsupported content message.
This commit is contained in:
parent
613634adcf
commit
d1167e4d2b
3 changed files with 44 additions and 24 deletions
app/src/main/java/io/lbry/browser/utils
|
@ -322,7 +322,7 @@ public final class Helper {
|
|||
}
|
||||
|
||||
public static String getValue(CharSequence cs) {
|
||||
return cs != null ? cs.toString() : "";
|
||||
return cs != null ? cs.toString().trim() : "";
|
||||
}
|
||||
|
||||
public static List<String> buildContentSortOrder(int sortBy) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue