Another UUID conversion fix for database mode.

This commit is contained in:
ryanhamshire 2015-01-28 13:38:16 -08:00
parent 4a024b87fd
commit 8f566ce816

View File

@ -250,7 +250,7 @@ public class DatabaseDataStore extends DataStore
String ownerName = results.getString("owner");
UUID ownerID = null;
if(ownerName.isEmpty())
if(ownerName.isEmpty() || ownerName.startsWith("--"))
{
ownerID = null; //administrative land claim or subdivision
}