Fix retrieval of PNI.

fork-5.53.8
Greyson Parrelli 2021-11-18 14:38:13 -05:00
rodzic a5e5a73580
commit 85453ca442
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -52,7 +52,7 @@ internal class AccountValues internal constructor(store: KeyValueStore) : Signal
/** The local user's [PNI]. */
val pni: PNI?
get() = PNI.parseOrNull(getString(KEY_ACI, null))
get() = PNI.parseOrNull(getString(KEY_PNI, null))
fun setPni(pni: PNI) {
putString(KEY_PNI, pni.toString())