1
0
mirror of https://github.com/anope/anope.git synced 2026-07-03 19:43:12 +02:00

Fix db_old assigning empty greets to users who did not have a greet. Fix debug log message in extensible.cpp

This commit is contained in:
Adam
2013-12-19 08:19:35 -05:00
parent c4d4107412
commit 275f2fd374
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -450,7 +450,8 @@ static void LoadNicks()
nc->email = buffer;
READ(read_string(buffer, f));
nc->Extend<Anope::string>("greet", buffer);
if (!buffer.empty())
nc->Extend<Anope::string>("greet", buffer);
uint32_t u32;
READ(read_uint32(&u32, f));