Skip to content

Commit 7d04f58

Browse files
AJMcKJohnnyCrazy
authored andcommitted
Typo Fix in HasPreviousPage() (#387)
was returning the status of Next instead of Previous
1 parent bdef8b6 commit 7d04f58

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

SpotifyAPI.Web/Models/Paging.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public bool HasNextPage()
3333

3434
public bool HasPreviousPage()
3535
{
36-
return Next != null;
36+
return Previous != null;
3737
}
3838
}
39-
}
39+
}

0 commit comments

Comments
 (0)