From 7d04f58c7432b5c4792bec894fd72de950c97121 Mon Sep 17 00:00:00 2001 From: Alex Date: Fri, 20 Sep 2019 08:17:43 +1000 Subject: [PATCH] Typo Fix in HasPreviousPage() (#387) was returning the status of Next instead of Previous --- SpotifyAPI.Web/Models/Paging.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SpotifyAPI.Web/Models/Paging.cs b/SpotifyAPI.Web/Models/Paging.cs index 03e5305e..bbd2e86c 100644 --- a/SpotifyAPI.Web/Models/Paging.cs +++ b/SpotifyAPI.Web/Models/Paging.cs @@ -33,7 +33,7 @@ namespace SpotifyAPI.Web.Models public bool HasPreviousPage() { - return Next != null; + return Previous != null; } } -} \ No newline at end of file +}