Skip to content

Commit

Permalink
Update device ID header in auth handlers
Browse files Browse the repository at this point in the history
  • Loading branch information
rabilrbl authored Sep 10, 2024
1 parent 75a9fe9 commit f2b75cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/handlers/auth.go
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ func LoginRefreshAccessToken() error {
req.Header.Set("Accept-Encoding", "gzip")
req.Header.Set("User-Agent", "okhttp/4.2.2")
req.Header.Set("accessToken", tokenData.AccessToken)
req.Header.Set("deviceId", utils.GetDeviceID())
req.Header.Set("deviceid", utils.GetDeviceID())
req.SetBody(requestBodyJSON)

// Send the request
Expand Down

0 comments on commit f2b75cb

Please sign in to comment.