Merge pull request #139 from cheeaun/main

Update from main
This commit is contained in:
Chee Aun 2023-05-14 22:02:10 +08:00 committed by GitHub
commit 69f9b750c2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 20 additions and 5 deletions

View file

@ -45,7 +45,10 @@ function Following({ title, path, id, ...props }) {
return bDate - aDate; return bDate - aDate;
}); });
} }
return results; return {
...results,
value,
};
} }
async function checkForUpdates() { async function checkForUpdates() {

View file

@ -60,7 +60,10 @@ function Hashtags(props) {
saveStatus(item, instance); saveStatus(item, instance);
}); });
} }
return results; return {
...results,
value,
};
} }
async function checkForUpdates() { async function checkForUpdates() {

View file

@ -46,7 +46,10 @@ function List(props) {
saveStatus(item, instance); saveStatus(item, instance);
}); });
} }
return results; return {
...results,
value,
};
} }
async function checkForUpdates() { async function checkForUpdates() {

View file

@ -45,7 +45,10 @@ function Public({ local, ...props }) {
saveStatus(item, instance); saveStatus(item, instance);
}); });
} }
return results; return {
...results,
value,
};
} }
async function checkForUpdates() { async function checkForUpdates() {

View file

@ -43,7 +43,10 @@ function Trending(props) {
saveStatus(item, instance); saveStatus(item, instance);
}); });
} }
return results; return {
...results,
value,
};
} }
async function checkForUpdates() { async function checkForUpdates() {