Skip to content

Commit 71c1f93

Browse files
edited nextLink updation
1 parent 9b5ea78 commit 71c1f93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/microsoft/graph/content/MSBatchResponseContent.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ public void update(Response batchResponse) {
133133
JSONObject batchResponseObj = stringToJSONObject(batchResponseData);
134134
if(batchResponseObj != null) {
135135

136-
JSONObject nextLinkObject = (JSONObject) batchResponseObj.get("nextLink");
136+
JSONObject nextLinkObject = (JSONObject) batchResponseObj.get("@odata.nextLink");
137137
if(nextLinkObject!=null)
138138
nextLink = nextLinkObject.toString();
139139

0 commit comments

Comments
 (0)