Skip to content

Commit

Permalink
Release 0.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
yukihirai0505 committed Oct 23, 2017
1 parent 6763c68 commit 239dbe9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Expand Up @@ -4,7 +4,7 @@ sonatypeSettings

name := "sInstagram"

version := "0.2.4"
version := "0.2.5"

scalaVersion := "2.11.8"

Expand Down
Expand Up @@ -169,7 +169,7 @@ class Instagram(auth: Auth) {
val params: Map[String, Option[String]] = Map(
QueryParam.CURSOR -> cursor
)
val apiPath: String = Methods.USERS_ID_FOLLOWS
val apiPath: String = Methods.USERS_FOLLOWS
request(Verbs.GET, apiPath, Some(params))
}

Expand Down
Expand Up @@ -66,7 +66,7 @@ object Methods {
*
* Required scope: relationships
*/
val USERS_ID_FOLLOWS: String = "/users/self/follows"
val USERS_FOLLOWS: String = "/users/self/follows"

/**
* Get the list of users this user is followed by.
Expand Down

0 comments on commit 239dbe9

Please sign in to comment.