Skip to content

Commit

Permalink
Merge pull request #210 from mikymod/master
Browse files Browse the repository at this point in the history
fix malformed json error in startOrResume
  • Loading branch information
rinukkusu authored Mar 23, 2024
2 parents acef46d + 3aa989f commit b3182a0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions lib/src/endpoints/player.dart
Original file line number Diff line number Diff line change
Expand Up @@ -103,11 +103,13 @@ class PlayerEndpoint extends _MeEndpointBase {
{String? deviceId,
StartOrResumeOptions? options,
bool retrievePlaybackState = true}) async {
var body = options?.toJson();
var json = jsonEncode(body ?? '');
final body = options?.toJson();
final json = body != null ? jsonEncode(body) : null;

await _api._put(
'$_path/play?${_buildQuery({'device_id': deviceId})}', json);
'$_path/play?${_buildQuery({'device_id': deviceId})}',
json,
);

return retrievePlaybackState ? playbackState() : null;
}
Expand Down
2 changes: 1 addition & 1 deletion lib/src/spotify_base.dart
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ abstract class SpotifyApiBase {
return _deleteImpl('$_baseUrl/$path', const {}, body);
}

Future<String> _put(String path, [String body = '']) {
Future<String> _put(String path, [String? body]) {
return _putImpl('$_baseUrl/$path', const {}, body);
}

Expand Down

0 comments on commit b3182a0

Please sign in to comment.