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
There are several people (self included) that are running into problems using marksman with Snipe-IT version 5+. I think I've traced the problem to line 45 in Category.cs in your fork of SnipeSharp:
public bool eula { get; set; }
I've found that if I change it to:
public string eula { get; set; }
and then build the SnipeSharp and then marksman projects, that this gets marksman working again on Snipe-IT 5+. Would you be able to verify that (I'm not a developer, and have no idea if this will cause problems or if changing from bool to string would be the right variable type), and if so - implement a fix to get it working again?
Thanks so much!!
The text was updated successfully, but these errors were encountered:
Hello,
There are several people (self included) that are running into problems using marksman with Snipe-IT version 5+. I think I've traced the problem to line 45 in Category.cs in your fork of SnipeSharp:
public bool eula { get; set; }
I've found that if I change it to:
public string eula { get; set; }
and then build the SnipeSharp and then marksman projects, that this gets marksman working again on Snipe-IT 5+. Would you be able to verify that (I'm not a developer, and have no idea if this will cause problems or if changing from bool to string would be the right variable type), and if so - implement a fix to get it working again?
Thanks so much!!
The text was updated successfully, but these errors were encountered: