Skip to content
This repository has been archived by the owner on Oct 9, 2018. It is now read-only.

Commit

Permalink
Fix Workdiary API issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Maksym Novozhylov committed Dec 8, 2014
1 parent 914be0e commit 28a7929
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
* Added new Submission API - Submit for Approval
* Added new Submission API - Approve the Submission
* Added new Submission API - Reject the Submission
* Fixed issue in Workdiary API

## 0.1.10
* Added new call for Referenced User API
Expand Down
2 changes: 1 addition & 1 deletion src/com/oDesk/api/Routers/Workdiary.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public Workdiary(OAuthClient client) {
* @return {@link JSONObject}
*/
public JSONObject get(String company, String username, String date, HashMap<String, String> params) throws JSONException {
return oClient.get("/team/v1/workdiaries/" + company + "/" + "username" + "/" + date, params);
return oClient.get("/team/v1/workdiaries/" + company + "/" + username + "/" + date, params);
}

}

0 comments on commit 28a7929

Please sign in to comment.