mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-23 23:11:28 +00:00
getRange: handle start == stop
This commit is contained in:
@@ -1001,6 +1001,9 @@ define(["dojo/_base/declare"], function (declare) {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
getRange: function (start, stop) {
|
getRange: function (start, stop) {
|
||||||
|
if (start == stop)
|
||||||
|
return [start];
|
||||||
|
|
||||||
const rows = $$("#headlines-frame > div[id*=RROW]");
|
const rows = $$("#headlines-frame > div[id*=RROW]");
|
||||||
const results = [];
|
const results = [];
|
||||||
let collecting = false;
|
let collecting = false;
|
||||||
|
|||||||
Reference in New Issue
Block a user