-
-
Notifications
You must be signed in to change notification settings - Fork 439
Closed
Description
What
- Adding a price doesn't work the price is queued but never actually uploaded.
- Root cause: in
BackgroundTaskPrice.fromJson,json[_jsonTagBarcodes]is cast asList<String>, this should beList<dynamic>
Steps to reproduce the behavior
- Go to a product page
- Tap "Add a price"
- Fill in the price details and submit
- Price appears queued but is never uploaded
Expected behavior
The price should be successfully uploaded to Open Prices.
Additional context
Fix: change as List<String> to as List<dynamic> in BackgroundTaskPrice.fromJson (only .length is needed from the list). This bug was introduced in PR #7408
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels
Type
Projects
Status
π Done