mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-12-18 22:32:07 +03:00
Comment out code for deleted status updates
This commit is contained in:
parent
764a7fcdee
commit
0ecc8b0bd7
1 changed files with 5 additions and 4 deletions
|
@ -53,10 +53,11 @@ async function startStream() {
|
||||||
states.statuses.set(status.reblog.id, status.reblog);
|
states.statuses.set(status.reblog.id, status.reblog);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
stream.on('delete', (statusID) => {
|
// Uncomment this once this bug is fixed: https://github.com/neet/masto.js/issues/750
|
||||||
console.log('DELETE', statusID);
|
// stream.on('delete', (statusID) => {
|
||||||
states.statuses.delete(statusID);
|
// console.log('DELETE', statusID);
|
||||||
});
|
// states.statuses.delete(statusID);
|
||||||
|
// });
|
||||||
stream.on('notification', (notification) => {
|
stream.on('notification', (notification) => {
|
||||||
console.log('NOTIFICATION', notification);
|
console.log('NOTIFICATION', notification);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue