Fix bug in package loader - allow loading version with later patch if old version is missing
This commit is contained in:
parent
2d8ac6f377
commit
1e16f02b48
|
@ -221,6 +221,11 @@ public class FilesystemPackageCacheManager extends BasePackageCacheManager imple
|
||||||
return retVal;
|
return retVal;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
retVal = super.loadFromPackageServer(id, VersionUtilities.getMajMin(version)+".x");
|
||||||
|
if (retVal != null) {
|
||||||
|
return retVal;
|
||||||
|
}
|
||||||
|
|
||||||
// ok, well, we'll try the old way
|
// ok, well, we'll try the old way
|
||||||
return fetchTheOldWay(id, version);
|
return fetchTheOldWay(id, version);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue