Skip to content

Commit b0c48c7

Browse files
author
Yevhen Podkovyrin
committed
Release 1.0.12
1 parent 2274c55 commit b0c48c7

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -53,19 +53,19 @@ dependencyResolutionManagement {
5353
**Identity** module:
5454

5555
```groovy
56-
implementation "com.flexa:core:1.0.11"
56+
implementation "com.flexa:core:1.0.12"
5757
```
5858

5959
**Scan** module:
6060

6161
```groovy
62-
implementation "com.flexa:scan:1.0.11"
62+
implementation "com.flexa:scan:1.0.12"
6363
```
6464

6565
**Spend** module:
6666

6767
```groovy
68-
implementation "com.flexa:spend:1.0.11"
68+
implementation "com.flexa:spend:1.0.12"
6969
```
7070

7171
### Remote repository
@@ -107,19 +107,19 @@ implementation "com.flexa:spend:1.0.11"
107107
**Identity** module:
108108

109109
```groovy
110-
implementation "com.flexa:core:1.0.11"
110+
implementation "com.flexa:core:1.0.12"
111111
```
112112

113113
**Scan** module:
114114

115115
```groovy
116-
implementation "com.flexa:scan:1.0.11"
116+
implementation "com.flexa:scan:1.0.12"
117117
```
118118

119119
**Spend** module:
120120

121121
```groovy
122-
implementation "com.flexa:spend:1.0.11"
122+
implementation "com.flexa:spend:1.0.12"
123123
```
124124

125125

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ buildscript {
22
ext {
33
kotlinVersion = '1.9.21'
44

5-
sdk_version = '1.0.11'
5+
sdk_version = '1.0.12'
66
groupId = 'com.flexa'
77
core_version = sdk_version
88
scan_version = sdk_version

core/src/main/java/com/flexa/core/data/rest/HeadersInterceptor.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ internal class HeadersInterceptor(
3333
val request = newRequestWithAccessToken(chain.request(), token)
3434
var response = chain.proceed(request)
3535

36-
checkResponse(response)
36+
if (!keepAlive) checkResponse(response)
3737

3838
if (response.code == HttpURLConnection.HTTP_FORBIDDEN ||
3939
response.code == HttpURLConnection.HTTP_UNAUTHORIZED

0 commit comments

Comments
 (0)