Return null for nickname if empty
This commit is contained in:
@@ -830,7 +830,7 @@ public class LpaProvider extends ContentProvider
|
|||||||
{
|
{
|
||||||
p.getIccid(),
|
p.getIccid(),
|
||||||
LPAUtilsKt.isEnabled(p),
|
LPAUtilsKt.isEnabled(p),
|
||||||
p.getNickName()
|
p.getNickName().isEmpty() ? null : p.getNickName()
|
||||||
})
|
})
|
||||||
.toArray(Object[][]::new);
|
.toArray(Object[][]::new);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user