Skip to content

Commit

Permalink
reintroduces tinkerResponses in play,next,previous
Browse files Browse the repository at this point in the history
  • Loading branch information
Vincent Eichhorn committed Jul 9, 2024
1 parent d49070f commit a7de11c
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/SpotifyConnect/SPOCApiNext.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,10 @@ SPOCApiNext >> skipToNextOn: aDevice [

self execute: (Dictionary new at: #device_id put: aDevice; yourself)
]

{
#category : #'api-call',
#'squeak_changestamp' : 'VE 7/9/2024 11:22'
}
SPOCApiNext >> tinkerReponseContent: aContentStream [
]
8 changes: 8 additions & 0 deletions src/SpotifyConnect/SPOCApiPause.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,11 @@ SPOCApiPause >> pauseOn: aDevice [

self execute: (Dictionary new at: #device_id put: aDevice; yourself)
]

{
#category : #'api-call',
#'squeak_changestamp' : 'VE 7/9/2024 11:21'
}
SPOCApiPause >> tinkerReponseContent: aContentStream [

]
7 changes: 7 additions & 0 deletions src/SpotifyConnect/SPOCApiPlay.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -134,3 +134,10 @@ SPOCApiPlay >> playTrack: aString withPlaylist: anotherString on: aDevice [
at: #uris put: (self buildUris: aString);
yourself)
]

{
#category : #parameters,
#'squeak_changestamp' : 'VE 7/9/2024 11:21'
}
SPOCApiPlay >> tinkerReponseContent: aContentStream [
]
8 changes: 8 additions & 0 deletions src/SpotifyConnect/SPOCApiPrevious.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,11 @@ SPOCApiPrevious >> skipToPreviousOn: aDevice [

self execute: (Dictionary new at: #device_id put: aDevice; yourself)
]

{
#category : #'api-call',
#'squeak_changestamp' : 'VE 7/9/2024 11:23'
}
SPOCApiPrevious >> tinkerReponseContent: aContentStream [

]

0 comments on commit a7de11c

Please sign in to comment.