Closed
Bug 932957
Opened 12 years ago
Closed 11 years ago
Missing username from app review listing
Categories
(Marketplace Graveyard :: API, defect, P2)
Tracking
(Not tracked)
VERIFIED
FIXED
2014-02-25
People
(Reporter: krupa.mozbugs, Assigned: mat)
References
()
Details
Attachments
(1 file)
|
251.18 KB,
image/png
|
Details |
steps to reproduce:
1. Load https://marketplace.firefox.com/app/counters/ratings
2. Notice that one of the reviews is missing the name of the reviewer
See screenshot.
Comment 1•12 years ago
|
||
The API is indeed reporting that the user has no display name:
http://cl.ly/image/160b3w1i271e
Component: Consumer Pages → API
Updated•12 years ago
|
Priority: -- → P2
Comment 2•12 years ago
|
||
SELECT users.id, users.display_name FROM reviews INNER JOIN addons ON (reviews.addon_id = addons.id) INNER JOIN users ON (reviews.user_id = users.id) WHERE ("en-us"="en-us" AND addons.app_slug = 'counters' ) ORDER BY reviews.created DESC LIMIT 21;
+---------+--------------------+
| id | display_name |
+---------+--------------------+
| 6133935 | |
| 6254801 | andre alves garzia |
+---------+--------------------+
2 rows in set (0.02 sec)
Likely related to bug 869656. I don't think we have validation in the API here.
| Assignee | ||
Updated•11 years ago
|
Assignee: nobody → mpillard
| Assignee | ||
Updated•11 years ago
|
Status: NEW → ASSIGNED
Target Milestone: --- → 2014-02-18
| Assignee | ||
Updated•11 years ago
|
Target Milestone: 2014-02-18 → 2014-02-25
| Assignee | ||
Comment 3•11 years ago
|
||
Fixed in https://github.com/mozilla/zamboni/commit/fcca2025059c433840efb751a747ef81ff5a8a1d
STR:
- Log in in consumer pages on -dev
- Go to settings
- Empty the field with your display name
- Right click and choose Inspect Element on that field
- Remove the "pattern" attribute on that field, close the inspector
- Submit the form
- You should see an error and the changes should not have been saved
Status: ASSIGNED → RESOLVED
Closed: 11 years ago
Resolution: --- → FIXED
Whiteboard: [qa-]
| Reporter | ||
Comment 4•11 years ago
|
||
Status: RESOLVED → VERIFIED
Whiteboard: [qa-]
You need to log in
before you can comment on or make changes to this bug.
Description
•