Skip to content

Commit

Permalink
Support verified account in request
Browse files Browse the repository at this point in the history
  • Loading branch information
AFPMedialab committed Jul 16, 2020
1 parent 13769b8 commit f510633
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@
<properties>
<docker.path>src/main/docker/delivery</docker.path>
<docker.image.name>twint-wrapper</docker.image.name>
<docker.image.tag>2.0.2.1</docker.image.tag>
<docker.image.tag>2.0.2.2</docker.image.tag>
</properties>
<build>
<plugins>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,9 @@ else if (collectRequest.getMedia().equals("image"))
else if (collectRequest.getMedia().equals("video"))
sb.append(" filter:native_video");
}
if(collectRequest.isVerified()) {
sb.append(" filter:verified");
}
// users
if (collectRequest.getUserList() != null && !collectRequest.getUserList().isEmpty()) {
// hasUser = true;
Expand Down
2 changes: 1 addition & 1 deletion src/scripts/prod/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ services:
- esnet

twint-wrapper:
image: twint-wrapper:2.0.2.1
image: twint-wrapper:2.0.2.2
container_name: twint-wrapper
restart: on-failure
depends_on:
Expand Down

0 comments on commit f510633

Please sign in to comment.