this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix check for updates failing

+5 -4
+3 -3
src/locales/en.po
··· 1397 1397 #: src/components/nav-menu.jsx:190 1398 1398 #: src/components/shortcuts-settings.jsx:140 1399 1399 #: src/pages/following.jsx:23 1400 - #: src/pages/following.jsx:144 1400 + #: src/pages/following.jsx:145 1401 1401 msgid "following.title" 1402 1402 msgstr "Following" 1403 1403 ··· 3148 3148 msgid "No hashtags followed yet." 3149 3149 msgstr "" 3150 3150 3151 - #: src/pages/following.jsx:146 3151 + #: src/pages/following.jsx:147 3152 3152 msgid "Nothing to see here." 3153 3153 msgstr "" 3154 3154 3155 - #: src/pages/following.jsx:147 3155 + #: src/pages/following.jsx:148 3156 3156 #: src/pages/list.jsx:109 3157 3157 msgid "Unable to load posts." 3158 3158 msgstr ""
+2 -1
src/pages/following.jsx
··· 92 92 if (supports('@pixelfed/home-include-reblogs')) { 93 93 opts.include_reblogs = true; 94 94 } 95 - const results = await masto.v1.timelines.home.list(opts).next(); 95 + const results = await masto.v1.timelines.home.list(opts).values().next(); 96 96 let { value } = results; 97 97 console.log('checkForUpdates', latestItem.current, value); 98 98 const valueContainsLatestItem = value[0]?.id === latestItem.current; // since_id might not be supported ··· 106 106 } 107 107 return false; 108 108 } catch (e) { 109 + console.error(e); 109 110 return false; 110 111 } 111 112 }