1
0
mirror of https://github.com/deavmi/birchwood synced 2024-09-20 13:22:52 +02:00
- Update the `ConnInfo`'s `db` on `RPL_ISUPPORT`
This commit is contained in:
Tristan B. Velloza Kildaire 2023-03-25 13:01:35 +02:00
parent 357deeb5e4
commit c53fc034d2

View File

@ -189,7 +189,13 @@ public class Client : Thread
testing(commandReply.getKVPairs());
/* Fetch and parse the received key-value pairs */
string[string] receivedKV = commandReply.getKVPairs();
foreach(string key; receivedKV.keys())
{
/* Update the db */
connInfo.updateDB(key, receivedKV[key]);
}
}
}