Fixed recursion

This commit is contained in:
Luca Frosini 2020-06-23 15:06:27 +02:00
parent ae173ccbd4
commit 861ddc0f4b
1 changed files with 1 additions and 1 deletions

View File

@ -196,7 +196,7 @@ public class CKANPackage extends CKAN {
protected String getCurrentContext() {
if(currentContext == null) {
currentContext = ContextUtility.getCurrentContext();
currentScopeBean = new ScopeBean(getCurrentContext());
currentScopeBean = new ScopeBean(currentContext);
}
return currentContext;
}