Skip to content

Commit

Permalink
release 1.14.5: fix movie upload
Browse files Browse the repository at this point in the history
  • Loading branch information
JellyBrick committed May 5, 2022
1 parent 30c4af9 commit a38e47b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 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.14.4'
compile 'be.zvz:KotlinInside:1.14.5'
```

#### Gradle 7+

```groovy
implementation 'be.zvz:KotlinInside:1.14.4'
implementation 'be.zvz:KotlinInside:1.14.5'
```

### Maven
Expand All @@ -25,7 +25,7 @@ implementation 'be.zvz:KotlinInside:1.14.4'
<dependency>
<groupId>be.zvz</groupId>
<artifactId>KotlinInside</artifactId>
<version>1.14.2</version>
<version>1.14.5</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.14.4$libDevVersion"
String libVersion = "1.14.5$libDevVersion"
String libDesc = 'Unofficial DCInside API written in Kotlin'

group = 'be.zvz'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ class ArticleWrite internal constructor(
)

if (insertResult.result) {
option.addMultipartParameter("memo_block[$index]", "Dc_App_Movie_$movieCount")
option.addMultipartParameter(
"movie_data[$movieCount]",
"${insertResult.movieId}|${insertResult.movieToken}|${content.fileId}"
Expand Down

0 comments on commit a38e47b

Please sign in to comment.