mirror of
https://github.com/ajayyy/SponsorBlock.git
synced 2024-11-10 01:01:55 +01:00
Change chapters sorting
This commit is contained in:
parent
3be51c89a9
commit
e8a82eddca
1 changed files with 1 additions and 1 deletions
|
@ -561,7 +561,7 @@ async function runThePopup(messageListener?: MessageListener): Promise<void> {
|
|||
return true;
|
||||
}
|
||||
})
|
||||
.sort((a, b) => a.segment[1] - b.segment[1])
|
||||
.sort((a, b) => b.segment[1] - a.segment[1])
|
||||
.sort((a, b) => a.segment[0] - b.segment[0]);
|
||||
|
||||
//add them as buttons to the issue reporting container
|
||||
|
|
Loading…
Reference in a new issue