forked from Qortal/qortal
Fixed yet another case sensitivity issue.
This commit is contained in:
parent
618cffefb1
commit
8c7f09c454
@ -50,6 +50,11 @@ public class ArbitraryDataReader {
|
|||||||
private Path unencryptedPath;
|
private Path unencryptedPath;
|
||||||
|
|
||||||
public ArbitraryDataReader(String resourceId, ResourceIdType resourceIdType, Service service) {
|
public ArbitraryDataReader(String resourceId, ResourceIdType resourceIdType, Service service) {
|
||||||
|
// Ensure names are always lowercase
|
||||||
|
if (resourceIdType == ResourceIdType.NAME) {
|
||||||
|
resourceId = resourceId.toLowerCase();
|
||||||
|
}
|
||||||
|
|
||||||
this.resourceId = resourceId;
|
this.resourceId = resourceId;
|
||||||
this.resourceIdType = resourceIdType;
|
this.resourceIdType = resourceIdType;
|
||||||
this.service = service;
|
this.service = service;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user