fix: show totp secret as base32

This commit is contained in:
trisua 2025-04-17 21:16:08 -04:00
parent 539caf7859
commit f161e0b176

View file

@ -569,7 +569,7 @@ impl DataManager {
};
// return
Ok((secret, qr, recovery))
Ok((totp.get_secret_base32(), qr, recovery))
}
pub async fn cache_clear_user(&self, user: &User) {