diff options
author | Ajay <[email protected]> | 2024-05-09 19:09:37 -0400 |
---|---|---|
committer | Ajay <[email protected]> | 2024-05-09 19:09:37 -0400 |
commit | e8a82eddcae08b44c13f26fdeb229c1ce4bf5a2d (patch) | |
tree | ed6436c972706d12da475e17cd3c247a8ce012b9 | |
parent | 3be51c89a9bf8c086172f8bb5a8efa83d0193523 (diff) | |
download | SponsorBlock-e8a82eddcae08b44c13f26fdeb229c1ce4bf5a2d.tar.gz SponsorBlock-e8a82eddcae08b44c13f26fdeb229c1ce4bf5a2d.zip |
Change chapters sorting
-rw-r--r-- | src/popup.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/popup.ts b/src/popup.ts index 2f3a0d7a..2b7aa67a 100644 --- a/src/popup.ts +++ b/src/popup.ts @@ -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 |