Skip to content

Commit

Permalink
Merge pull request #1569 from AtlasOfLivingAustralia/hotfix/6.6.5
Browse files Browse the repository at this point in the history
Hotfix/6.6.5
  • Loading branch information
jack-brinkman authored Nov 2, 2023
2 parents f0ef30d + ead35e9 commit 3fe3705
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ apply from: "${project.projectDir}/gradle/publish.gradle"
repositories {
mavenLocal()
//for missing jai_core.jar
//maven { url "https://mvnrepository.com" }
//maven { url "https://mvnrepository.com" }
maven { url "https://repo.osgeo.org/repository/release/" }
maven { url "https://repo.grails.org/grails/core" }
maven { url = uri("https://maven.pkg.github.com/atlasoflivingaustralia/ecodata-client-plugin")
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
biocollectVersion=6.6.4
biocollectVersion=6.6.5-SNAPSHOT
grailsVersion=5.1.9
grailsGradlePluginVersion=5.1.5
assetPipelineVersion=3.3.4
Expand Down
4 changes: 2 additions & 2 deletions grails-app/views/layouts/mobile.gsp
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@
withCredentials: true
},
beforeSend: function (xhr) {
<g:if test="${authorization}">
xhr.setRequestHeader('Authorization', "${raw(authorization)}");
<g:if test="${Authorization}">
xhr.setRequestHeader('Authorization', "${raw(Authorization)}");
</g:if>
<g:elseif test="${grailsApplication.config.getProperty("mobile.authKeyEnabled", Boolean) && authKey && userName}">
xhr.setRequestHeader('authKey', "${raw(authKey)}");
Expand Down

0 comments on commit 3fe3705

Please sign in to comment.