Describe the bug
Voting, subscribing, adding to fav, (...), workshop items does not work.
To Reproduce
Steps to reproduce the behavior:
Create or download an item from the workshop.
Call item.Vote.
The result.Value is always 'Failure'.
Calling Code
// 'item' is a Steamworks.Ugc.Item object
var result = await item.Vote(true);
if(!result.HasValue || result.Value != Steamworks.Result.OK)
{
ShowMessage("Error", "An error occurred while submitting your request", 3);
return;
}
Expected behavior
The vote should be published in the workshop item, but it is not.
Desktop (please complete the following information):
OS: Win64
WinUI3 C#. Standalone (no Unity).
Additional context
The rest of the functionalities work correctly (publish/download/update items, consult their information, etc.). It simply does not allow you to modify the information of the items in the workshop.
Describe the bug Voting, subscribing, adding to fav, (...), workshop items does not work.
To Reproduce Steps to reproduce the behavior:
Calling Code
Expected behavior The vote should be published in the workshop item, but it is not.
Desktop (please complete the following information):
Additional context The rest of the functionalities work correctly (publish/download/update items, consult their information, etc.). It simply does not allow you to modify the information of the items in the workshop.