[Add] TXT record loading

This commit is contained in:
Alex Emmet 2026-04-16 21:11:48 +02:00
commit 6da441fe35
5 changed files with 379 additions and 47 deletions

View file

@ -197,7 +197,7 @@ impl IotaConnection {
if let Ok(response_cv) = response_cv {
if response_cv.is_type(CommunicationType::success) {
if let Some(user_id) = cv.get_data(DataTypes::user_id).as_number() {
self.add_user_id(user_id as u64);
self.add_user_id(user_id as u64).await;
}
}
self.send_message(&response_cv).await;