Skip to content

Commit

Permalink
Fix typo in widgets
Browse files Browse the repository at this point in the history
  • Loading branch information
freQniK committed Nov 15, 2024
1 parent 6c1baa2 commit 991c47e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui/widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def SubmitRating(self, rating, node_address):
Request = HTTPRequests.MakeRequest()
http = Request.hadapter()
if MNAPI != HTTParams.SERVER_URL:
req = http.post(HTTParams.MNAPI + HTTParams.API_RATING_ENDPOINT, json=rating_dict)
req = http.post(MNAPI + HTTParams.API_RATING_ENDPOINT, json=rating_dict)
else:
req = http.post(HTTParams.SERVER_URL + HTTParams.API_RATING_ENDPOINT, json=rating_dict)
if req.status_code == 200:
Expand Down

0 comments on commit 991c47e

Please sign in to comment.