mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-04-27 17:09:43 +00:00
Skip empty user names on uuid conversion.
This commit is contained in:
parent
887957756e
commit
d62b401db8
1 changed files with 1 additions and 1 deletions
|
@ -526,7 +526,7 @@ public class EssentialsUpgrade
|
||||||
|
|
||||||
for (String string : userdir.list())
|
for (String string : userdir.list())
|
||||||
{
|
{
|
||||||
if (!string.endsWith(".yml"))
|
if (!string.endsWith(".yml") || string.length() < 5)
|
||||||
{
|
{
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue