diff options
Diffstat (limited to 'src/configreader.cpp')
-rw-r--r-- | src/configreader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/configreader.cpp b/src/configreader.cpp index 22d4e36dc..87ee8789b 100644 --- a/src/configreader.cpp +++ b/src/configreader.cpp @@ -412,7 +412,7 @@ static bool ValidateSID(ServerConfig* conf, const char*, const char*, ValueItem const std::string& sid = data.GetValue(); - if (!ServerInstance->IsSID(sid)) + if (!sid.empty() && !ServerInstance->IsSID(sid)) { throw CoreException(sid + " is not a valid server ID. A server ID must be 3 characters long, with the first character a digit and the next two characters a digit or letter."); } |