Typo Fix in HasPreviousPage() (#387)

was returning the status of Next instead of Previous
This commit is contained in:
Alex 2019-09-20 08:17:43 +10:00 committed by Jonas Dellinger
parent bdef8b6514
commit 7d04f58c74

View File

@ -33,7 +33,7 @@ namespace SpotifyAPI.Web.Models
public bool HasPreviousPage() public bool HasPreviousPage()
{ {
return Next != null; return Previous != null;
} }
} }
} }