mirror of
https://github.com/xpipe-io/xpipe.git
synced 2026-04-25 17:07:26 -04:00
Various small fixes
This commit is contained in:
@@ -89,6 +89,6 @@ public class DataSourceId {
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return collectionName.toLowerCase() + SEPARATOR + (entryName != null ? entryName.toLowerCase() : "");
|
||||
return (collectionName != null ? collectionName.toLowerCase() : "") + SEPARATOR + entryName;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user