fix: 🐛 swipe left goes back a page
This commit is contained in:
parent
5e9d1ee478
commit
817ccb5b32
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "misskey",
|
||||
"version": "12.118.1-calc.10.3",
|
||||
"version": "12.118.1-calc.11",
|
||||
"codename": "aqua",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
|
|
@ -285,7 +285,7 @@ if (isMobile.value) {
|
|||
console.log('left swipe');
|
||||
next =
|
||||
timelines[
|
||||
(timelines.indexOf(src) + 1) % timelines.length
|
||||
(timelines.indexOf(src) - 1) % timelines.length
|
||||
];
|
||||
}
|
||||
saveSrc(next);
|
||||
|
|
Loading…
Reference in New Issue