diff --git a/bin/svgs.js b/bin/svgs.js index 13300fde..2b2ffbde 100644 --- a/bin/svgs.js +++ b/bin/svgs.js @@ -17,5 +17,6 @@ module.exports = [ {id:'fa-lock', src:'node_modules/font-awesome-svg-png/white/svg/lock.svg', title: 'Locked'}, {id:'fa-envelope', src:'node_modules/font-awesome-svg-png/white/svg/envelope.svg', title: 'Sealed Envelope'}, {id:'fa-user-times', src:'node_modules/font-awesome-svg-png/white/svg/user-times.svg', title: 'Stop Following'}, - {id:'fa-user-plus', src:'node_modules/font-awesome-svg-png/white/svg/user-plus.svg', title: 'Follow'} + {id:'fa-user-plus', src:'node_modules/font-awesome-svg-png/white/svg/user-plus.svg', title: 'Follow'}, + {id:'fa-comments', src:'node_modules/font-awesome-svg-png/white/svg/comments.svg', title: 'Statuses'}, ] \ No newline at end of file diff --git a/routes/_actions/timeline.js b/routes/_actions/timeline.js index 7282f4f4..c8deb8ed 100644 --- a/routes/_actions/timeline.js +++ b/routes/_actions/timeline.js @@ -31,6 +31,8 @@ async function fetchStatuses(instanceName, accessToken, timelineName, lastStatus } async function addStatuses(instanceName, timelineName, newStatuses) { + console.log('addStatuses, length:', newStatuses.length) + debugger mark('addStatuses') let newStatusIds = newStatuses.map(status => status.id) let oldStatusIds = store.getForTimeline(instanceName, timelineName, 'statusIds') || [] diff --git a/routes/_components/Layout.html b/routes/_components/Layout.html index e68639b0..238af527 100644 --- a/routes/_components/Layout.html +++ b/routes/_components/Layout.html @@ -1,5 +1,5 @@ <:Window bind:online /> -