Skip to content

Commit

Permalink
release 1.13.1: fix scope
Browse files Browse the repository at this point in the history
  • Loading branch information
JellyBrick committed Apr 29, 2022
1 parent 9a25afa commit 3a306f3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
#### < Gradle 7

```groovy
compile 'be.zvz:KotlinInside:1.13.0'
compile 'be.zvz:KotlinInside:1.13.1'
```

#### Gradle 7+

```groovy
implementation 'be.zvz:KotlinInside:1.13.0'
implementation 'be.zvz:KotlinInside:1.13.1'
```

### Maven
Expand All @@ -25,7 +25,7 @@ implementation 'be.zvz:KotlinInside:1.13.0'
<dependency>
<groupId>be.zvz</groupId>
<artifactId>KotlinInside</artifactId>
<version>1.13.0</version>
<version>1.13.1</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ boolean isDev = false

String libName = 'KotlinInside'
String libDevVersion = isDev ? '-SNAPSHOT' : ''
String libVersion = "1.13.0$libDevVersion"
String libVersion = "1.13.1$libDevVersion"
String libDesc = 'Unofficial DCInside API written in Kotlin'

group = 'be.zvz'
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/be/zvz/kotlininside/security/Auth.kt
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class Auth {
.addBodyParameter("X-gcm.topic", scope)
.addBodyParameter("X-app_ver", Const.DC_APP_VERSION_CODE)
.addBodyParameter("X-appid", fid)
.addBodyParameter("X-scope", "/topics/DcRefreshRemoteConfig")
.addBodyParameter("X-scope", scope)
.addBodyParameter("X-Goog-Firebase-Installations-Auth", installationToken)
.addBodyParameter("X-gmp_app_id", Const.Firebase.APP_ID)
.addBodyParameter("X-firebase-app-name-hash", Const.Register3.X_FIREBASE_APP_NAME_HASH)
Expand Down

0 comments on commit 3a306f3

Please sign in to comment.