Return null for nickname if empty

This commit is contained in:
Laiteux
2025-11-07 16:48:00 +04:00
parent 77920f04e1
commit 2985e985da
@@ -830,7 +830,7 @@ public class LpaProvider extends ContentProvider
{
p.getIccid(),
LPAUtilsKt.isEnabled(p),
p.getNickName()
p.getNickName().isEmpty() ? null : p.getNickName()
})
.toArray(Object[][]::new);