tangled
alpha
login
or
join now
leaflet.pub
/
leaflet
289
fork
atom
a tool for shared writing and social publishing
289
fork
atom
overview
issues
27
pulls
pipelines
fixup! backdate appview some more
awarm.space
6 months ago
0b486d6d
8272d847
+1
-1
1 changed file
expand all
collapse all
unified
split
appview
index.ts
+1
-1
appview/index.ts
reviewed
···
32
32
let startCursor;
33
33
try {
34
34
let file = (await readFile(cursorFile)).toString();
35
35
-
console.log(file);
35
35
+
console.log("START CURSOR: " + file);
36
36
startCursor = parseInt(file);
37
37
if (Number.isNaN(startCursor)) startCursor = undefined;
38
38
} catch (e) {}