-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor ExtractJsonArrayStringArgument #1
Comments
Looking at the code, I can't really see how this code could ever have worked. It seems to try to create an array of a single string. But it calls |
well I know why this never occurred as a problem. |
Right, that makes some kind of sense. |
@eksperts If I understand you correctly you mean it would be more straight-forward if the method only accepted an array? I think I agree with that. @kusma Yeah, you're right. The |
@BeeWarloc you understood me correctly, yes |
Hello. Any news on this? |
@LuisRodriguezLD Nope, unfortunately haven't gotten to this yet. The fix should be quick and simple, but I'm leaning towards just changing the documentation to say it just supports taking in an array of skus, as I think the string overload just makes the API more ambiguous. 🙂 |
this here is the culprit: https://github.com/fusetools/Fuse.Billing.Android/blob/master/src/Fuse.Billing.Android/BillingModule.uno#L225
first,
Json.Escape()
is deprecated as of 0.36second, the method seems poorly designed. it could be better if it would work with an array instead of
if/else
ing on the param type.The text was updated successfully, but these errors were encountered: