File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -26,9 +26,9 @@ spotify: object [
26
26
scope: ""
27
27
port-id: 8989
28
28
token: none
29
- get : func [ what [any-string! ]] [request self 'GET what none]
30
- put : func [ what [any-string! ] /with data] [request self 'PUT what data]
31
- del : func [ what [any-string! ]] [request self 'DELETE what none]
29
+ get : func [ what [any-string! ] ] [request self 'GET what none]
30
+ put : func [ what [any-string! ] /with data] [request self 'PUT what data]
31
+ del : func [ what [any-string! ] ] [request self 'DELETE what none]
32
32
request: none
33
33
]
34
34
@@ -40,7 +40,7 @@ authorize: function [
40
40
ctx/request: :request
41
41
42
42
unless ctx/client-id [
43
- print ajoin ["*** `" value " ` is needed to authorize with Spotify!" ]
43
+ print ajoin ["*** `client-id ` is needed to authorize with Spotify!" ]
44
44
return none
45
45
]
46
46
unless string? ctx/client-id [ ctx/client-id: form ctx/client-id ]
You can’t perform that action at this time.
0 commit comments