Skip to content
This repository has been archived by the owner on Jan 23, 2025. It is now read-only.

Commit

Permalink
fix fetchData token from accessToken
Browse files Browse the repository at this point in the history
Signed-off-by: ianmuchyri <ianmuchiri8@gmail.com>
  • Loading branch information
ianmuchyri authored and dborovcanin committed Mar 14, 2024
1 parent beecb7e commit 143112e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/api/endpoint.go
Original file line number Diff line number Diff line change
Expand Up @@ -1375,7 +1375,7 @@ func FetchChartDataEndpoint(svc ui.Service) endpoint.Endpoint {
if err := req.validate(); err != nil {
return nil, err
}
res, err := svc.FetchChartData(req.Session.AccessToken, req.channelID, req.mpgm)
res, err := svc.FetchChartData(req.Session.Token, req.channelID, req.mpgm)
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 143112e

Please sign in to comment.