Skip to content

Commit 1c2ee98

Browse files
committed
Adding a fix to support rn version properly
1 parent db596a7 commit 1c2ee98

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • gocwebtemplate-core/gocwebtemplate-core-base/src/main/java/goc/webtemplate/component

gocwebtemplate-core/gocwebtemplate-core-base/src/main/java/goc/webtemplate/component/AbstractCoreBean.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ public void setFooterPath(String footerPath) {
340340

341341
templateVersion = this.getTemplateVersion();
342342
envRun = "";
343-
if (Utility.isNullOrEmpty(templateVersion)) {
343+
if (Utility.isNullOrEmpty(templateVersion) || templateVersion.equals("rn")) {
344344
if ((environment != null) && environment.isVersionRnCombined()) {
345345
templateVersion = "rn/";
346346
//(envRun stays blank)

0 commit comments

Comments
 (0)