Change back to limit 1
Sometimes, there's really just one new status update.
This commit is contained in:
parent
9278645069
commit
6da4834b71
|
@ -120,8 +120,7 @@ function startVisibility() {
|
|||
(async () => {
|
||||
try {
|
||||
const fetchHome = masto.v1.timelines.listHome({
|
||||
limit: 2,
|
||||
// Need 2 because "new posts" only appear when there are 2 or more
|
||||
limit: 1,
|
||||
});
|
||||
const fetchNotifications = masto.v1.notifications.list({
|
||||
limit: 1,
|
||||
|
|
|
@ -110,7 +110,7 @@ function Home({ hidden }) {
|
|||
<Icon icon="notification" size="l" alt="Notifications" />
|
||||
</a>
|
||||
</div>
|
||||
{snapStates.homeNew.length > 1 && (
|
||||
{snapStates.homeNew.length > 0 && (
|
||||
<button
|
||||
class="updates-button"
|
||||
type="button"
|
||||
|
|
Loading…
Reference in a new issue