Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Z-Bolt/OctoScreen.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'octoprintApis/SdStateRequest.go')
-rwxr-xr-xoctoprintApis/SdStateRequest.go9
1 files changed, 5 insertions, 4 deletions
diff --git a/octoprintApis/SdStateRequest.go b/octoprintApis/SdStateRequest.go
index 87c8717..2a86fd6 100755
--- a/octoprintApis/SdStateRequest.go
+++ b/octoprintApis/SdStateRequest.go
@@ -17,15 +17,16 @@ type SdStateRequest struct{}
// Do sends an API request and returns the API response.
func (cmd *SdStateRequest) Do(c *Client) (*dataModels.SdState, error) {
- b, err := c.doJsonRequest("GET", PrinterSdApiUri, nil, PrintSdErrors)
+ bytes, err := c.doJsonRequest("GET", PrinterSdApiUri, nil, PrintSdErrors, true)
if err != nil {
return nil, err
}
- r := &dataModels.SdState{}
- if err := json.Unmarshal(b, r); err != nil {
+ // TODO: rename SdState to SdStateResponse or something.
+ response := &dataModels.SdState{}
+ if err := json.Unmarshal(bytes, response); err != nil {
return nil, err
}
- return r, err
+ return response, err
}