Page MenuHomePhabricator

(current) contribution not shown first on Special:Contributions
Closed, DuplicatePublic

Description

On entity history, the order of edits is correct

Screenshot 2019-04-24 at 20.45.39.png (2,354×1,012 px, 414 KB)

But on Special:Contributions, current edit appeared after an edit that was pervious to it in the list (appeared second instead of first)

Screenshot 2019-04-24 at 20.19.06.png (2,324×1,034 px, 406 KB)

Event Timeline

Reedy renamed this task from (current) contribution not showed first on Special:Contributions to (current) contribution not shown first on Special:Contributions.Apr 24 2019, 7:47 PM

@Reedy were you that fast doing all these edits within one minute or was it script/bot? I would like to clarify how you ended up in this situation so that we can try to reproduce it locally.

I'm suspecting that it might be a sorting issue between the two pages, relying on different significance of timestamps or smth similar.

@Reedy were you that fast doing all these edits within one minute or was it script/bot? I would like to clarify how you ended up in this situation so that we can try to reproduce it locally.

I'm suspecting that it might be a sorting issue between the two pages, relying on different significance of timestamps or smth similar.

It was with a browser, no tools or bots or scripts. I just filled in numerous things and then hit publish on them all

MariaDB [wikidatawiki]> select rev_id, rev_timestamp, rev_parent_id from revision where rev_page = 4946611 and rev_user = 2;
+-----------+----------------+---------------+
| rev_id    | rev_timestamp  | rev_parent_id |
+-----------+----------------+---------------+
| 923695941 | 20190424140201 |     863327727 |
| 923696023 | 20190424140210 |     923695941 |
| 923696164 | 20190424140227 |     923696023 |
| 923696240 | 20190424140234 |     923696164 |
| 923696611 | 20190424140311 |     923696240 |
| 923794258 | 20190424182702 |     923696611 |
| 923794361 | 20190424182714 |     923794258 |
| 923794549 | 20190424182742 |     923794361 |
| 923794555 | 20190424182743 |     923794549 |
| 923794562 | 20190424182743 |     923794555 |
+-----------+----------------+---------------+
10 rows in set (0.01 sec)