fix #getUniqueUsers for SQL storage types

This commit is contained in:
Luck 2016-09-10 16:38:37 +01:00
parent c7bfc38477
commit f9025c7a51
No known key found for this signature in database
GPG Key ID: EFA9B3EC5FD90F8B

View File

@ -265,7 +265,7 @@ abstract class SQLDatastore extends Datastore {
String uuid = resultSet.getString("uuid");
uuids.add(UUID.fromString(uuid));
}
return false;
return true;
}
});