From e274025c6ccadea88856e6c17149de1110850a28 Mon Sep 17 00:00:00 2001 From: Dan Spiteri Date: Mon, 6 Aug 2018 15:02:40 +0200 Subject: [PATCH] Update Scope.cs (#263) Add missing "user-read-currently-playing" scope --- SpotifyAPI/Web/Enums/Scope.cs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/SpotifyAPI/Web/Enums/Scope.cs b/SpotifyAPI/Web/Enums/Scope.cs index ea8a4147..534d34c6 100644 --- a/SpotifyAPI/Web/Enums/Scope.cs +++ b/SpotifyAPI/Web/Enums/Scope.cs @@ -54,6 +54,9 @@ namespace SpotifyAPI.Web.Enums UserReadPlaybackState = 32768, [String("user-modify-playback-state")] - UserModifyPlaybackState = 65536 + UserModifyPlaybackState = 65536, + + [String("user-read-currently-playing")] + UserReadCurrentlyPlaying = 131072 } -} \ No newline at end of file +}