Small improvements

This commit is contained in:
M66B
2021-09-25 13:02:56 +02:00
parent 745cd80c33
commit e51ff622c6
2 changed files with 3 additions and 3 deletions

View File

@@ -924,8 +924,8 @@ public class BoundaryCallbackMessages extends PagedList.BoundaryCallback<TupleMe
if (with_size != null)
flags.add(context.getString(R.string.title_search_flag_size,
Helper.humanReadableByteCount(with_size)));
return (query == null ? "" : query)
+ (flags.size() > 0 ? " +" : "")
return (query == null ? "" : query + " ")
+ (flags.size() > 0 ? "+" : "")
+ TextUtils.join(",", flags);
}