You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had a weird issue where nothing would work in my project, but other projects worked fine. I don't know what I did, or how I did it, but changing this:
Resource = resource + "/{ResourceId}-{Id}//",
to
Resource = resource + "/{ResourceId}-{Id}/",
In the main core file under GetSingleResource fixed everything. Any thoughts?
The text was updated successfully, but these errors were encountered:
This was due to GiantBomb-CSharp referencing an out-of-date version of RestSharp. I updated it to reference the latest version which fixes this bug. Thanks!
I had a weird issue where nothing would work in my project, but other projects worked fine. I don't know what I did, or how I did it, but changing this:
Resource = resource + "/{ResourceId}-{Id}//",
to
Resource = resource + "/{ResourceId}-{Id}/",
In the main core file under GetSingleResource fixed everything. Any thoughts?
The text was updated successfully, but these errors were encountered: