Return null for nickname if empty

This commit is contained in:
Laiteux
2025-11-07 14:21:30 +04:00
parent 77920f04e1
commit 2985e985da

View File

@@ -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);