This commit is contained in:
Morten Delenk 2022-08-28 15:07:38 +01:00
parent 64484b91be
commit f19d9ac9d4
No known key found for this signature in database
GPG key ID: 5130416C797067B6

View file

@ -89,7 +89,7 @@ class TrackedItemCursor {
}
async function fetchPage(lastId: string | null): Promise<TrackedItemCursor> {
const url = "https://invtracker.chir.rs/" + (lastId === null ? '/objects' : `/objects?start=${lastId}`);
const url = "https://invtracker.chir.rs" + (lastId === null ? '/objects' : `/objects?start=${lastId}`);
const response = await fetch(url, {
method: 'GET',
headers: {